結果

問題 No.1083 余りの余り
ユーザー prd_xxxprd_xxx
提出日時 2020-06-19 22:04:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 321 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 84,412 KB
最終ジャッジ日時 2024-07-03 14:45:32
合計ジャッジ時間 9,637 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,060 KB
testcase_01 AC 38 ms
52,208 KB
testcase_02 AC 47 ms
61,248 KB
testcase_03 AC 35 ms
53,232 KB
testcase_04 WA -
testcase_05 AC 257 ms
77,872 KB
testcase_06 AC 35 ms
52,276 KB
testcase_07 AC 50 ms
62,416 KB
testcase_08 AC 46 ms
61,576 KB
testcase_09 AC 36 ms
52,788 KB
testcase_10 AC 45 ms
61,728 KB
testcase_11 WA -
testcase_12 AC 37 ms
54,056 KB
testcase_13 AC 36 ms
52,952 KB
testcase_14 AC 35 ms
52,740 KB
testcase_15 AC 34 ms
53,304 KB
testcase_16 AC 36 ms
53,272 KB
testcase_17 AC 35 ms
53,012 KB
testcase_18 WA -
testcase_19 AC 255 ms
77,848 KB
testcase_20 AC 49 ms
65,308 KB
testcase_21 AC 74 ms
76,168 KB
testcase_22 AC 35 ms
52,084 KB
testcase_23 AC 1,090 ms
84,060 KB
testcase_24 AC 1,094 ms
84,108 KB
testcase_25 AC 1,096 ms
83,960 KB
testcase_26 AC 1,087 ms
84,076 KB
testcase_27 AC 45 ms
61,488 KB
testcase_28 WA -
testcase_29 AC 34 ms
52,500 KB
testcase_30 AC 34 ms
53,316 KB
testcase_31 AC 35 ms
53,576 KB
testcase_32 AC 36 ms
52,200 KB
testcase_33 AC 1,093 ms
84,412 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
A = list(map(int,input().split()))
A.sort()
dp = [0] * (1<<N)
for i,a in enumerate(A):
    dp[1<<i] = K%a

for b in range(2,1<<N):
    if bin(b).count('1') < 2: continue
    for i,a in enumerate(A):
        if b&(1<<i)==0: continue
        dp[b] = max(dp[b], dp[b^(1<<i)] % a)
print(dp[-1])
0