結果

問題 No.1083 余りの余り
ユーザー wattaiheiwattaihei
提出日時 2020-06-19 21:33:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 308 bytes
コンパイル時間 537 ms
コンパイル使用メモリ 82,672 KB
実行使用メモリ 84,412 KB
最終ジャッジ日時 2024-07-03 13:59:34
合計ジャッジ時間 5,943 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,432 KB
testcase_01 AC 35 ms
53,076 KB
testcase_02 AC 40 ms
60,412 KB
testcase_03 AC 35 ms
52,380 KB
testcase_04 WA -
testcase_05 AC 128 ms
75,008 KB
testcase_06 AC 35 ms
52,008 KB
testcase_07 AC 44 ms
61,876 KB
testcase_08 AC 41 ms
60,292 KB
testcase_09 AC 36 ms
52,444 KB
testcase_10 AC 41 ms
60,280 KB
testcase_11 WA -
testcase_12 AC 36 ms
53,360 KB
testcase_13 AC 35 ms
52,644 KB
testcase_14 AC 35 ms
53,224 KB
testcase_15 AC 34 ms
53,276 KB
testcase_16 AC 36 ms
52,684 KB
testcase_17 AC 36 ms
52,616 KB
testcase_18 WA -
testcase_19 AC 127 ms
75,096 KB
testcase_20 AC 44 ms
61,208 KB
testcase_21 AC 53 ms
62,872 KB
testcase_22 AC 36 ms
52,532 KB
testcase_23 AC 545 ms
84,412 KB
testcase_24 AC 551 ms
84,012 KB
testcase_25 AC 553 ms
83,844 KB
testcase_26 AC 556 ms
84,284 KB
testcase_27 AC 42 ms
60,608 KB
testcase_28 WA -
testcase_29 AC 36 ms
53,076 KB
testcase_30 AC 35 ms
53,104 KB
testcase_31 AC 37 ms
53,016 KB
testcase_32 AC 35 ms
52,772 KB
testcase_33 AC 547 ms
83,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N, K = map(int, input().split())
A = list(map(int, input().split()))

dp = [0 for _ in range(1<<N)]
dp[0] = K
for bit in range(1, 1<<N):
    p = 0
    for i in range(N):
        if bit&(1<<i):
            p = max(dp[bit^(1<<i)] % A[i], p)
    dp[bit] = p

print(dp[-1])
0