結果

問題 No.504 ゲーム大会(ランキング)
ユーザー nobigomunobigomu
提出日時 2018-06-04 12:09:01
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 793 ms / 2,000 ms
コード長 217 bytes
コンパイル時間 10,278 ms
コンパイル使用メモリ 431,336 KB
実行使用メモリ 76,632 KB
最終ジャッジ日時 2024-04-30 18:33:25
合計ジャッジ時間 18,796 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 255 ms
54,252 KB
testcase_01 AC 252 ms
54,144 KB
testcase_02 AC 253 ms
54,176 KB
testcase_03 AC 256 ms
54,164 KB
testcase_04 AC 255 ms
54,140 KB
testcase_05 AC 263 ms
54,200 KB
testcase_06 AC 251 ms
54,264 KB
testcase_07 AC 716 ms
76,460 KB
testcase_08 AC 763 ms
72,564 KB
testcase_09 AC 793 ms
76,544 KB
testcase_10 AC 719 ms
76,492 KB
testcase_11 AC 726 ms
76,612 KB
testcase_12 AC 707 ms
76,508 KB
testcase_13 AC 686 ms
76,632 KB
testcase_14 AC 719 ms
76,588 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