結果

問題 No.523 LED
ユーザー 💕💖💞💕💖💞
提出日時 2017-06-25 16:28:50
言語 Kotlin
(1.9.23)
結果
TLE  
実行時間 -
コード長 225 bytes
コンパイル時間 11,023 ms
コンパイル使用メモリ 424,892 KB
実行使用メモリ 377,280 KB
最終ジャッジ日時 2024-11-20 10:29:23
合計ジャッジ時間 34,876 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 273 ms
60,228 KB
testcase_01 AC 274 ms
95,008 KB
testcase_02 AC 316 ms
74,116 KB
testcase_03 AC 275 ms
360,620 KB
testcase_04 AC 280 ms
59,992 KB
testcase_05 TLE -
testcase_06 AC 347 ms
63,756 KB
testcase_07 AC 276 ms
360,616 KB
testcase_08 AC 276 ms
59,992 KB
testcase_09 AC 309 ms
101,032 KB
testcase_10 AC 286 ms
63,588 KB
testcase_11 AC 276 ms
56,672 KB
testcase_12 AC 281 ms
56,636 KB
testcase_13 AC 730 ms
200,324 KB
testcase_14 AC 284 ms
56,668 KB
testcase_15 AC 288 ms
56,852 KB
testcase_16 AC 281 ms
56,840 KB
testcase_17 AC 280 ms
56,928 KB
testcase_18 TLE -
testcase_19 AC 1,129 ms
280,124 KB
testcase_20 AC 1,038 ms
258,168 KB
testcase_21 TLE -
testcase_22 RE -
testcase_23 RE -
testcase_24 AC 320 ms
377,280 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:11: warning: parameter 'args' is never used
fun main( args : Array<String> ) { 
          ^

ソースコード

diff #

fun main( args : Array<String> ) { 
  val c = 1000000007L
  val a = readLine()!!.toInt()
  val b = (1..a).map { x ->
    x.toLong()
  }.map { x ->
    x * (2 * x - 1) % c
  }.reduce { y, x ->
    y*x % c
  }
  println( b )
}
0