結果

問題 No.1083 余りの余り
ユーザー H3PO4H3PO4
提出日時 2020-06-19 21:45:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 244 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 82,324 KB
実行使用メモリ 84,224 KB
最終ジャッジ日時 2024-07-03 14:13:24
合計ジャッジ時間 5,660 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 44 ms
59,904 KB
testcase_03 AC 35 ms
52,132 KB
testcase_04 WA -
testcase_05 AC 129 ms
74,752 KB
testcase_06 AC 36 ms
51,584 KB
testcase_07 AC 42 ms
61,056 KB
testcase_08 AC 41 ms
59,904 KB
testcase_09 AC 36 ms
52,208 KB
testcase_10 AC 44 ms
59,520 KB
testcase_11 WA -
testcase_12 AC 35 ms
52,096 KB
testcase_13 AC 35 ms
51,840 KB
testcase_14 AC 35 ms
52,096 KB
testcase_15 AC 34 ms
51,584 KB
testcase_16 AC 34 ms
52,096 KB
testcase_17 AC 34 ms
52,224 KB
testcase_18 WA -
testcase_19 AC 127 ms
74,752 KB
testcase_20 AC 43 ms
60,672 KB
testcase_21 AC 51 ms
61,952 KB
testcase_22 AC 34 ms
51,840 KB
testcase_23 AC 528 ms
84,096 KB
testcase_24 AC 516 ms
83,968 KB
testcase_25 AC 526 ms
83,968 KB
testcase_26 AC 523 ms
83,996 KB
testcase_27 AC 41 ms
59,776 KB
testcase_28 WA -
testcase_29 AC 35 ms
52,096 KB
testcase_30 AC 36 ms
52,096 KB
testcase_31 AC 35 ms
51,840 KB
testcase_32 AC 35 ms
51,840 KB
testcase_33 AC 506 ms
84,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
A = tuple(map(int, input().split()))

dp = [0] * (1 << N)
dp[0] = K
for b in range(1, 1 << N):
    for i in range(N):
        if b >> i & 1:
            dp[b] = max(dp[b - (1 << i)] % A[i], dp[b])
print(dp[-1])
0