complete 2156.kt and 11727.kt & queue 11058.kt

This commit is contained in:
2024-05-25 17:56:42 +09:00
parent 8031759e0f
commit e4102d91c5
3 changed files with 56 additions and 0 deletions

8
zeta_kotlin/11058.kt Normal file
View File

@@ -0,0 +1,8 @@
fun solve(N: Int): Int {
return 1
}
fun main() {
val N = readln().toInt()
println(solve(N))
}