結果
問題 | No.129 お年玉(2) |
ユーザー | 6soukiti29 |
提出日時 | 2017-09-04 19:49:36 |
言語 | Nim (2.0.2) |
結果 |
MLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 397 bytes |
コンパイル時間 | 4,522 ms |
コンパイル使用メモリ | 65,548 KB |
実行使用メモリ | 776,824 KB |
最終ジャッジ日時 | 2024-09-30 23:22:29 |
合計ジャッジ時間 | 16,665 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 50 ms
164,744 KB |
testcase_01 | MLE | - |
testcase_02 | AC | 1 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 3 ms
6,816 KB |
testcase_05 | AC | 236 ms
363,372 KB |
testcase_06 | AC | 511 ms
463,680 KB |
testcase_07 | MLE | - |
testcase_08 | MLE | - |
testcase_09 | MLE | - |
testcase_10 | MLE | - |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | MLE | - |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | MLE | - |
testcase_19 | MLE | - |
testcase_20 | MLE | - |
testcase_21 | MLE | - |
testcase_22 | MLE | - |
testcase_23 | MLE | - |
testcase_24 | MLE | - |
testcase_25 | MLE | - |
testcase_26 | MLE | - |
testcase_27 | MLE | - |
testcase_28 | MLE | - |
testcase_29 | AC | 2 ms
6,820 KB |
testcase_30 | AC | 1 ms
6,820 KB |
testcase_31 | AC | 2 ms
7,156 KB |
testcase_32 | AC | 2 ms
7,176 KB |
testcase_33 | AC | 15 ms
62,352 KB |
testcase_34 | AC | 9 ms
35,852 KB |
testcase_35 | AC | 14 ms
58,364 KB |
testcase_36 | AC | 15 ms
62,492 KB |
testcase_37 | AC | 17 ms
72,728 KB |
testcase_38 | AC | 85 ms
257,064 KB |
testcase_39 | AC | 118 ms
320,516 KB |
testcase_40 | MLE | - |
testcase_41 | AC | 184 ms
422,976 KB |
testcase_42 | AC | 95 ms
275,440 KB |
testcase_43 | AC | 96 ms
273,400 KB |
testcase_44 | MLE | - |
testcase_45 | AC | 61 ms
201,784 KB |
testcase_46 | AC | 130 ms
339,024 KB |
testcase_47 | MLE | - |
testcase_48 | MLE | - |
コンパイルメッセージ
/home/judge/data/code/Main.nim(1, 8) Warning: imported and not used: 'sequtils' [UnusedImport]
ソースコード
import sequtils,strutils var N = stdin.readline.parseBiggestInt M = stdin.readline.parseBiggestInt c = (N div 1000) mod M memo : array[10001, array[10001, int64]] for i in 0..M: for j in 0..i: if j == 0: memo[i][j] = 1 else: memo[i][j] = (memo[i - 1][j] + memo[i - 1][j - 1]) mod 1_000_000_000 #echo memo[i][0..i.int] echo memo[M][c]