結果

問題 No.1083 余りの余り
ユーザー tanon710tanon710
提出日時 2020-06-19 23:54:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 278 bytes
コンパイル時間 152 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 84,096 KB
最終ジャッジ日時 2024-07-03 16:11:42
合計ジャッジ時間 9,812 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,216 KB
testcase_01 AC 40 ms
59,700 KB
testcase_02 AC 47 ms
64,428 KB
testcase_03 AC 43 ms
60,024 KB
testcase_04 WA -
testcase_05 AC 924 ms
77,992 KB
testcase_06 AC 34 ms
52,392 KB
testcase_07 AC 47 ms
63,900 KB
testcase_08 AC 47 ms
63,400 KB
testcase_09 AC 42 ms
61,100 KB
testcase_10 AC 47 ms
63,760 KB
testcase_11 WA -
testcase_12 AC 42 ms
61,192 KB
testcase_13 AC 43 ms
61,808 KB
testcase_14 AC 34 ms
53,104 KB
testcase_15 AC 35 ms
52,348 KB
testcase_16 AC 36 ms
53,384 KB
testcase_17 AC 36 ms
52,740 KB
testcase_18 WA -
testcase_19 AC 907 ms
78,336 KB
testcase_20 AC 58 ms
66,600 KB
testcase_21 AC 136 ms
76,416 KB
testcase_22 AC 36 ms
51,712 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 57 ms
62,464 KB
testcase_28 TLE -
testcase_29 AC 34 ms
53,416 KB
testcase_30 AC 35 ms
53,872 KB
testcase_31 AC 36 ms
52,868 KB
testcase_32 AC 41 ms
61,740 KB
testcase_33 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
arr=list(map(int,input().split()))
dp=[0]*(2**n)
dp[0]=k
for _ in range(10):
    for i in range(2**n):
        for j in range(n):
            if i&(1<<j):
                continue
            dp[i+(1<<j)]=max(dp[i+(1<<j)],dp[i]%arr[j])
print(dp[-1])
0