結果

問題 No.1083 余りの余り
ユーザー vwxyzvwxyz
提出日時 2024-06-22 02:12:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 224 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 84,384 KB
最終ジャッジ日時 2024-06-22 02:12:25
合計ジャッジ時間 5,993 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,304 KB
testcase_01 AC 37 ms
53,752 KB
testcase_02 AC 41 ms
60,280 KB
testcase_03 AC 35 ms
53,292 KB
testcase_04 WA -
testcase_05 AC 129 ms
75,516 KB
testcase_06 AC 35 ms
52,344 KB
testcase_07 AC 46 ms
61,772 KB
testcase_08 AC 41 ms
60,004 KB
testcase_09 AC 35 ms
52,624 KB
testcase_10 AC 43 ms
59,608 KB
testcase_11 WA -
testcase_12 AC 34 ms
52,428 KB
testcase_13 AC 35 ms
53,092 KB
testcase_14 AC 34 ms
52,488 KB
testcase_15 AC 35 ms
52,156 KB
testcase_16 AC 37 ms
52,000 KB
testcase_17 AC 37 ms
53,360 KB
testcase_18 WA -
testcase_19 AC 130 ms
75,232 KB
testcase_20 AC 45 ms
63,072 KB
testcase_21 AC 53 ms
63,044 KB
testcase_22 AC 36 ms
53,296 KB
testcase_23 AC 554 ms
83,984 KB
testcase_24 AC 562 ms
83,880 KB
testcase_25 AC 557 ms
84,216 KB
testcase_26 AC 539 ms
83,904 KB
testcase_27 AC 40 ms
60,876 KB
testcase_28 WA -
testcase_29 AC 35 ms
53,144 KB
testcase_30 AC 35 ms
52,004 KB
testcase_31 AC 37 ms
52,420 KB
testcase_32 AC 37 ms
52,616 KB
testcase_33 AC 554 ms
83,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
A=list(map(int,input().split()))
dp=[0]*(1<<N)
dp[0]=K
for bit in range(1<<N):
    for i in range(N):
        if bit&1<<i:
            dp[bit]=max(dp[bit],dp[bit^1<<i]%A[i])
ans=dp[-1]
print(ans)
0