結果

問題 No.487 2017 Calculation(2017の計算)
ユーザー 💕💖💞💕💖💞
提出日時 2017-06-24 19:10:09
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 313 ms / 2,000 ms
コード長 169 bytes
コンパイル時間 10,647 ms
コンパイル使用メモリ 431,380 KB
実行使用メモリ 56,896 KB
最終ジャッジ日時 2024-11-20 10:13:20
合計ジャッジ時間 16,521 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 308 ms
56,644 KB
testcase_01 AC 313 ms
56,896 KB
testcase_02 AC 308 ms
56,684 KB
testcase_03 AC 310 ms
56,620 KB
testcase_04 AC 306 ms
56,772 KB
testcase_05 AC 307 ms
56,768 KB
testcase_06 AC 308 ms
56,772 KB
testcase_07 AC 308 ms
56,812 KB
testcase_08 AC 305 ms
56,780 KB
testcase_09 AC 309 ms
56,764 KB
testcase_10 AC 306 ms
56,748 KB
testcase_11 AC 311 ms
56,828 KB
testcase_12 AC 311 ms
56,660 KB
testcase_13 AC 309 ms
56,764 KB
testcase_14 AC 305 ms
56,676 KB
testcase_15 AC 311 ms
56,852 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args : Array<String> ) {
         ^

ソースコード

diff #

fun main(args : Array<String> ) {
  val b  = 2017L
  var m  = readLine()!!.toLong()
  var c  = 1L
  (1..2017*2).map {
    c = c * 2017L % m
  }
  println( (b + c)%m )
}
0