結果

問題 No.1083 余りの余り
ユーザー roarisroaris
提出日時 2020-06-20 00:57:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 237 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 84,448 KB
最終ジャッジ日時 2024-07-03 16:24:13
合計ジャッジ時間 6,078 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,600 KB
testcase_01 AC 39 ms
53,992 KB
testcase_02 AC 42 ms
59,952 KB
testcase_03 AC 36 ms
52,892 KB
testcase_04 WA -
testcase_05 AC 154 ms
75,536 KB
testcase_06 AC 35 ms
52,280 KB
testcase_07 AC 44 ms
61,540 KB
testcase_08 AC 42 ms
60,344 KB
testcase_09 AC 36 ms
53,816 KB
testcase_10 AC 42 ms
61,760 KB
testcase_11 WA -
testcase_12 AC 37 ms
52,424 KB
testcase_13 AC 36 ms
52,660 KB
testcase_14 AC 35 ms
53,432 KB
testcase_15 AC 36 ms
52,704 KB
testcase_16 AC 36 ms
51,876 KB
testcase_17 AC 35 ms
52,272 KB
testcase_18 WA -
testcase_19 AC 154 ms
75,612 KB
testcase_20 AC 47 ms
62,376 KB
testcase_21 AC 56 ms
63,352 KB
testcase_22 AC 35 ms
51,692 KB
testcase_23 AC 565 ms
83,932 KB
testcase_24 AC 567 ms
83,760 KB
testcase_25 AC 565 ms
83,728 KB
testcase_26 AC 561 ms
83,964 KB
testcase_27 AC 41 ms
60,204 KB
testcase_28 WA -
testcase_29 AC 36 ms
52,464 KB
testcase_30 AC 35 ms
52,276 KB
testcase_31 AC 35 ms
52,492 KB
testcase_32 AC 35 ms
53,164 KB
testcase_33 AC 565 ms
83,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
A = list(map(int, input().split()))
dp = [0]*(1<<N)
dp[0] = K

for S in range(1<<N):
    for i in range(N):
        if not (S>>i)&1:
            dp[S|(1<<i)] = max(dp[S|(1<<i)], dp[S]%A[i])

print(dp[-1])
0