結果

問題 No.137 貯金箱の焦り
ユーザー convexineqconvexineq
提出日時 2021-05-14 08:47:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 741 ms / 5,000 ms
コード長 273 bytes
コンパイル時間 435 ms
コンパイル使用メモリ 81,944 KB
実行使用メモリ 107,552 KB
最終ジャッジ日時 2024-10-01 12:58:15
合計ジャッジ時間 5,396 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
59,252 KB
testcase_01 AC 41 ms
58,348 KB
testcase_02 AC 43 ms
60,300 KB
testcase_03 AC 38 ms
51,820 KB
testcase_04 AC 53 ms
62,580 KB
testcase_05 AC 48 ms
59,912 KB
testcase_06 AC 49 ms
62,412 KB
testcase_07 AC 44 ms
60,008 KB
testcase_08 AC 44 ms
61,596 KB
testcase_09 AC 48 ms
62,432 KB
testcase_10 AC 46 ms
60,676 KB
testcase_11 AC 36 ms
53,484 KB
testcase_12 AC 741 ms
107,552 KB
testcase_13 AC 99 ms
65,152 KB
testcase_14 AC 405 ms
84,792 KB
testcase_15 AC 360 ms
84,404 KB
testcase_16 AC 351 ms
83,192 KB
testcase_17 AC 145 ms
73,356 KB
testcase_18 AC 333 ms
83,096 KB
testcase_19 AC 392 ms
84,344 KB
testcase_20 AC 42 ms
60,280 KB
testcase_21 AC 198 ms
76,904 KB
testcase_22 AC 67 ms
68,156 KB
testcase_23 AC 64 ms
67,172 KB
testcase_24 AC 122 ms
72,296 KB
testcase_25 AC 255 ms
79,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
*a, = map(int,input().split())
s = sum(a)
MOD = 1234567891
f = [1]
while m:
    f += [0]*s
    for ai in a:
        for i in range(ai,len(f))[::-1]:
            f[i] += f[i-ai]
            f[i] %= MOD
    f = f[m%2::2]
    m //= 2
print(f[0])
0