結果

問題 No.523 LED
ユーザー むらためむらため
提出日時 2019-01-25 11:59:30
言語 Nim
(2.0.2)
結果
RE  
実行時間 -
コード長 506 bytes
コンパイル時間 11,678 ms
コンパイル使用メモリ 569,748 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-01 10:44:04
合計ジャッジ時間 12,734 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 RE -
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 RE -
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

proc getchar_unlocked():char {. importc:"getchar_unlocked",header: "<stdio.h>" .}
proc scan(): int =
  while true:
    let k = getchar_unlocked()
    if k < '0': break
    result = 10 * result + k.ord - '0'.ord

const MOD = 1000000007
const preCalcedNum = 1_00_0000
const results = (proc ():seq[int] =
  result = newSeq[int](preCalcedNum+1)
  var ans = 1
  for i in 1..preCalcedNum:
    let m = (i * (2 * i - 1)) mod MOD
    ans = ( ans * m ) mod MOD
    result[i] = ans
)()
let n = scan()
echo results[n]
0