結果

問題 No.129 お年玉(2)
ユーザー 6soukiti296soukiti29
提出日時 2019-09-11 09:38:52
言語 Nim
(2.0.2)
結果
AC  
実行時間 670 ms / 5,000 ms
コード長 379 bytes
コンパイル時間 3,051 ms
コンパイル使用メモリ 64,896 KB
実行使用メモリ 446,632 KB
最終ジャッジ日時 2024-07-02 16:44:31
合計ジャッジ時間 17,852 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
31,104 KB
testcase_01 AC 670 ms
438,648 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 267 ms
206,824 KB
testcase_06 AC 402 ms
305,848 KB
testcase_07 AC 553 ms
367,124 KB
testcase_08 AC 331 ms
260,840 KB
testcase_09 AC 493 ms
340,612 KB
testcase_10 AC 536 ms
381,040 KB
testcase_11 AC 330 ms
251,308 KB
testcase_12 AC 470 ms
318,400 KB
testcase_13 AC 465 ms
332,096 KB
testcase_14 AC 451 ms
323,236 KB
testcase_15 AC 342 ms
270,256 KB
testcase_16 AC 433 ms
302,908 KB
testcase_17 AC 509 ms
360,636 KB
testcase_18 AC 480 ms
341,636 KB
testcase_19 AC 512 ms
364,320 KB
testcase_20 AC 508 ms
359,812 KB
testcase_21 AC 635 ms
440,704 KB
testcase_22 AC 329 ms
263,352 KB
testcase_23 AC 573 ms
389,920 KB
testcase_24 AC 532 ms
375,724 KB
testcase_25 AC 328 ms
252,672 KB
testcase_26 AC 345 ms
258,112 KB
testcase_27 AC 325 ms
251,248 KB
testcase_28 AC 635 ms
444,464 KB
testcase_29 AC 1 ms
6,940 KB
testcase_30 AC 2 ms
6,940 KB
testcase_31 AC 2 ms
7,192 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 10 ms
25,744 KB
testcase_34 AC 4 ms
5,504 KB
testcase_35 AC 7 ms
7,808 KB
testcase_36 AC 8 ms
8,448 KB
testcase_37 AC 9 ms
9,728 KB
testcase_38 AC 78 ms
57,472 KB
testcase_39 AC 113 ms
83,840 KB
testcase_40 AC 303 ms
219,520 KB
testcase_41 AC 185 ms
153,636 KB
testcase_42 AC 90 ms
81,644 KB
testcase_43 AC 88 ms
80,584 KB
testcase_44 AC 640 ms
446,632 KB
testcase_45 AC 53 ms
55,920 KB
testcase_46 AC 128 ms
92,928 KB
testcase_47 AC 631 ms
418,276 KB
testcase_48 AC 352 ms
271,540 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
/home/judge/data/code/Main.nim(1, 8) Warning: imported and not used: 'sequtils' [UnusedImport]

ソースコード

diff #

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 or j == i:
            memo[i][j] = 1
        else:
            memo[i][j] = (memo[i - 1][j] + memo[i - 1][j - 1]) mod 1_000_000_000
echo memo[M][c]
0