結果

問題 No.137 貯金箱の焦り
ユーザー convexineqconvexineq
提出日時 2021-05-14 08:45:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 287 bytes
コンパイル時間 1,111 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 84,992 KB
最終ジャッジ日時 2024-10-01 12:56:49
合計ジャッジ時間 6,126 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
61,312 KB
testcase_01 AC 47 ms
63,872 KB
testcase_02 AC 88 ms
84,224 KB
testcase_03 AC 38 ms
58,496 KB
testcase_04 AC 80 ms
68,224 KB
testcase_05 AC 56 ms
62,464 KB
testcase_06 AC 88 ms
68,352 KB
testcase_07 AC 68 ms
67,200 KB
testcase_08 AC 70 ms
67,456 KB
testcase_09 AC 80 ms
68,224 KB
testcase_10 AC 64 ms
67,200 KB
testcase_11 AC 63 ms
81,792 KB
testcase_12 WA -
testcase_13 AC 90 ms
64,640 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 335 ms
83,584 KB
testcase_17 AC 219 ms
83,456 KB
testcase_18 AC 324 ms
83,200 KB
testcase_19 AC 367 ms
83,968 KB
testcase_20 AC 70 ms
81,060 KB
testcase_21 AC 259 ms
83,584 KB
testcase_22 AC 128 ms
84,992 KB
testcase_23 AC 115 ms
82,944 KB
testcase_24 AC 195 ms
82,432 KB
testcase_25 AC 295 ms
83,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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