結果

問題 No.1083 余りの余り
ユーザー nephrologistnephrologist
提出日時 2020-06-19 21:44:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 282 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,140 KB
実行使用メモリ 92,304 KB
最終ジャッジ日時 2024-07-03 14:12:43
合計ジャッジ時間 7,141 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,532 KB
testcase_01 AC 38 ms
52,964 KB
testcase_02 AC 44 ms
60,280 KB
testcase_03 AC 44 ms
52,004 KB
testcase_04 WA -
testcase_05 AC 171 ms
76,992 KB
testcase_06 AC 38 ms
52,056 KB
testcase_07 AC 45 ms
60,836 KB
testcase_08 AC 44 ms
60,136 KB
testcase_09 AC 39 ms
52,600 KB
testcase_10 AC 44 ms
59,600 KB
testcase_11 WA -
testcase_12 AC 38 ms
52,700 KB
testcase_13 AC 39 ms
53,212 KB
testcase_14 AC 38 ms
51,944 KB
testcase_15 AC 38 ms
52,492 KB
testcase_16 AC 39 ms
53,812 KB
testcase_17 AC 38 ms
52,968 KB
testcase_18 WA -
testcase_19 AC 171 ms
76,964 KB
testcase_20 AC 48 ms
61,564 KB
testcase_21 AC 59 ms
63,408 KB
testcase_22 AC 39 ms
53,004 KB
testcase_23 AC 653 ms
92,164 KB
testcase_24 AC 653 ms
92,024 KB
testcase_25 AC 653 ms
92,304 KB
testcase_26 AC 653 ms
92,292 KB
testcase_27 AC 45 ms
59,676 KB
testcase_28 WA -
testcase_29 AC 37 ms
52,484 KB
testcase_30 AC 36 ms
53,080 KB
testcase_31 AC 39 ms
52,632 KB
testcase_32 AC 39 ms
51,868 KB
testcase_33 AC 652 ms
92,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
A = list(map(int, input().split()))
A.sort()
dp = [-1] * (1 << n + 1)
dp[0] = k
for s in range(1 << n):
    for i in range(n):
        ns = s | 1 << i
        dp[ns] = max(dp[ns], dp[s] % A[i])
        # print(s, ns, dp[ns])
print(dp[(1 << n) - 1])
0