結果

問題 No.1083 余りの余り
ユーザー prd_xxxprd_xxx
提出日時 2020-06-19 21:38:11
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 312 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 84,284 KB
最終ジャッジ日時 2024-07-03 14:07:02
合計ジャッジ時間 9,280 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,280 KB
testcase_01 AC 34 ms
53,132 KB
testcase_02 AC 46 ms
61,268 KB
testcase_03 AC 37 ms
52,200 KB
testcase_04 WA -
testcase_05 AC 251 ms
77,868 KB
testcase_06 AC 35 ms
52,332 KB
testcase_07 AC 46 ms
63,720 KB
testcase_08 AC 47 ms
62,992 KB
testcase_09 AC 35 ms
52,576 KB
testcase_10 AC 47 ms
62,416 KB
testcase_11 WA -
testcase_12 AC 37 ms
54,192 KB
testcase_13 AC 35 ms
52,672 KB
testcase_14 AC 35 ms
52,752 KB
testcase_15 AC 35 ms
53,812 KB
testcase_16 AC 34 ms
54,568 KB
testcase_17 AC 34 ms
52,952 KB
testcase_18 WA -
testcase_19 AC 243 ms
78,068 KB
testcase_20 AC 47 ms
66,272 KB
testcase_21 AC 71 ms
76,116 KB
testcase_22 AC 35 ms
53,404 KB
testcase_23 AC 1,028 ms
83,956 KB
testcase_24 AC 1,033 ms
84,044 KB
testcase_25 AC 1,042 ms
84,032 KB
testcase_26 AC 1,047 ms
84,284 KB
testcase_27 AC 45 ms
63,236 KB
testcase_28 WA -
testcase_29 AC 35 ms
51,948 KB
testcase_30 AC 38 ms
52,212 KB
testcase_31 AC 37 ms
52,596 KB
testcase_32 AC 34 ms
52,364 KB
testcase_33 AC 1,079 ms
84,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
A = list(map(int,input().split()))
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