結果

問題 No.523 LED
ユーザー 💕💖💞💕💖💞
提出日時 2017-06-25 16:35:05
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 864 ms / 2,000 ms
コード長 191 bytes
コンパイル時間 9,669 ms
コンパイル使用メモリ 428,528 KB
実行使用メモリ 171,428 KB
最終ジャッジ日時 2024-11-20 10:29:59
合計ジャッジ時間 20,252 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 268 ms
56,600 KB
testcase_01 AC 274 ms
56,896 KB
testcase_02 AC 286 ms
56,672 KB
testcase_03 AC 278 ms
56,752 KB
testcase_04 AC 273 ms
56,848 KB
testcase_05 AC 864 ms
171,424 KB
testcase_06 AC 273 ms
56,856 KB
testcase_07 AC 278 ms
56,604 KB
testcase_08 AC 268 ms
56,820 KB
testcase_09 AC 284 ms
56,744 KB
testcase_10 AC 282 ms
56,736 KB
testcase_11 AC 283 ms
56,600 KB
testcase_12 AC 271 ms
56,840 KB
testcase_13 AC 368 ms
85,428 KB
testcase_14 AC 269 ms
56,652 KB
testcase_15 AC 278 ms
56,592 KB
testcase_16 AC 273 ms
56,864 KB
testcase_17 AC 283 ms
56,884 KB
testcase_18 AC 861 ms
171,428 KB
testcase_19 AC 414 ms
85,780 KB
testcase_20 AC 404 ms
85,624 KB
testcase_21 AC 624 ms
139,032 KB
testcase_22 AC 638 ms
139,056 KB
testcase_23 AC 636 ms
139,184 KB
testcase_24 AC 290 ms
53,892 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()
  var b = 1L 
  (1..a).map { x ->
    b = b * x % c
    b = (b * (2 * x - 1)) % c
  }
  println( b )
}
0