結果

問題 No.487 2017 Calculation(2017の計算)
ユーザー nobigomunobigomu
提出日時 2018-06-08 19:29:47
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 339 ms / 2,000 ms
コード長 216 bytes
コンパイル時間 10,681 ms
コンパイル使用メモリ 431,636 KB
実行使用メモリ 49,916 KB
最終ジャッジ日時 2024-11-20 16:19:51
合計ジャッジ時間 17,398 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 339 ms
49,608 KB
testcase_01 AC 338 ms
49,516 KB
testcase_02 AC 322 ms
49,824 KB
testcase_03 AC 304 ms
49,812 KB
testcase_04 AC 297 ms
49,516 KB
testcase_05 AC 295 ms
49,552 KB
testcase_06 AC 294 ms
49,508 KB
testcase_07 AC 294 ms
49,652 KB
testcase_08 AC 296 ms
49,576 KB
testcase_09 AC 302 ms
49,644 KB
testcase_10 AC 294 ms
49,716 KB
testcase_11 AC 293 ms
49,512 KB
testcase_12 AC 292 ms
49,916 KB
testcase_13 AC 295 ms
49,796 KB
testcase_14 AC 295 ms
49,608 KB
testcase_15 AC 295 ms
49,820 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:6:10: warning: parameter 'args' is never used
fun main(args: Array<String>) = println(f(readLine()!!.toInt()))
         ^

ソースコード

diff #

fun f(m: Int): Int {
    val t = 2017%m
    tailrec fun iter(n: Int, r: Int): Int = if (n>1) iter(n-1,(r*t)%m) else (t+r)%m
    return iter(2*2017,t)
}
fun main(args: Array<String>) = println(f(readLine()!!.toInt()))
0