結果

問題 No.504 ゲーム大会(ランキング)
ユーザー nobigomunobigomu
提出日時 2018-06-04 12:09:01
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 895 ms / 2,000 ms
コード長 217 bytes
コンパイル時間 11,502 ms
コンパイル使用メモリ 423,632 KB
実行使用メモリ 71,880 KB
最終ジャッジ日時 2024-11-20 16:00:57
合計ジャッジ時間 21,056 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 295 ms
49,536 KB
testcase_01 AC 294 ms
49,744 KB
testcase_02 AC 291 ms
49,576 KB
testcase_03 AC 298 ms
49,560 KB
testcase_04 AC 297 ms
49,516 KB
testcase_05 AC 292 ms
49,972 KB
testcase_06 AC 293 ms
49,624 KB
testcase_07 AC 843 ms
71,264 KB
testcase_08 AC 858 ms
71,184 KB
testcase_09 AC 895 ms
71,880 KB
testcase_10 AC 857 ms
71,144 KB
testcase_11 AC 856 ms
71,280 KB
testcase_12 AC 834 ms
70,496 KB
testcase_13 AC 807 ms
70,440 KB
testcase_14 AC 864 ms
71,272 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:6:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun r(): Int = readLine()!!.toInt()
tailrec fun f(n: Int, a: Int, i: Int) {
    if (n > 1) { val t = if (r()>a) i+1 else i; println(t); f(n-1,a,t) }
}

fun main(args: Array<String>) {
    println(1)
    f(r(),r(),1)
}
0