結果

問題 No.1083 余りの余り
ユーザー vwxyzvwxyz
提出日時 2024-06-22 02:19:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 135 ms / 3,000 ms
コード長 290 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 123,056 KB
最終ジャッジ日時 2024-06-22 02:19:48
合計ジャッジ時間 3,347 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,240 KB
testcase_01 AC 34 ms
52,216 KB
testcase_02 AC 33 ms
52,332 KB
testcase_03 AC 33 ms
52,552 KB
testcase_04 AC 37 ms
53,364 KB
testcase_05 AC 71 ms
93,540 KB
testcase_06 AC 33 ms
52,348 KB
testcase_07 AC 34 ms
52,204 KB
testcase_08 AC 33 ms
52,972 KB
testcase_09 AC 34 ms
52,744 KB
testcase_10 AC 33 ms
53,272 KB
testcase_11 AC 33 ms
53,132 KB
testcase_12 AC 34 ms
52,648 KB
testcase_13 AC 32 ms
53,192 KB
testcase_14 AC 32 ms
52,756 KB
testcase_15 AC 33 ms
52,272 KB
testcase_16 AC 32 ms
53,040 KB
testcase_17 AC 31 ms
52,856 KB
testcase_18 AC 89 ms
98,436 KB
testcase_19 AC 70 ms
93,832 KB
testcase_20 AC 50 ms
63,588 KB
testcase_21 AC 45 ms
66,872 KB
testcase_22 AC 33 ms
53,268 KB
testcase_23 AC 125 ms
122,844 KB
testcase_24 AC 129 ms
122,700 KB
testcase_25 AC 127 ms
122,584 KB
testcase_26 AC 135 ms
122,836 KB
testcase_27 AC 33 ms
53,292 KB
testcase_28 AC 128 ms
122,680 KB
testcase_29 AC 32 ms
52,796 KB
testcase_30 AC 32 ms
52,944 KB
testcase_31 AC 32 ms
53,368 KB
testcase_32 AC 32 ms
53,068 KB
testcase_33 AC 126 ms
123,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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