結果

問題 No.1083 余りの余り
ユーザー takakintakakin
提出日時 2020-06-19 22:29:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 263 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 84,364 KB
最終ジャッジ日時 2024-07-03 15:04:14
合計ジャッジ時間 6,063 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,480 KB
testcase_01 AC 41 ms
52,608 KB
testcase_02 AC 48 ms
60,160 KB
testcase_03 AC 41 ms
52,736 KB
testcase_04 WA -
testcase_05 AC 162 ms
76,116 KB
testcase_06 AC 38 ms
52,956 KB
testcase_07 AC 47 ms
62,860 KB
testcase_08 AC 45 ms
62,204 KB
testcase_09 AC 38 ms
53,816 KB
testcase_10 AC 44 ms
60,736 KB
testcase_11 WA -
testcase_12 AC 39 ms
52,864 KB
testcase_13 AC 39 ms
53,684 KB
testcase_14 AC 38 ms
53,136 KB
testcase_15 AC 38 ms
52,200 KB
testcase_16 AC 40 ms
52,880 KB
testcase_17 AC 38 ms
54,352 KB
testcase_18 WA -
testcase_19 AC 148 ms
76,324 KB
testcase_20 AC 50 ms
62,396 KB
testcase_21 AC 58 ms
64,764 KB
testcase_22 AC 38 ms
52,524 KB
testcase_23 AC 522 ms
83,960 KB
testcase_24 AC 529 ms
84,096 KB
testcase_25 AC 523 ms
84,000 KB
testcase_26 AC 525 ms
84,364 KB
testcase_27 AC 42 ms
60,532 KB
testcase_28 WA -
testcase_29 AC 41 ms
52,480 KB
testcase_30 AC 41 ms
52,352 KB
testcase_31 AC 41 ms
52,352 KB
testcase_32 AC 38 ms
52,480 KB
testcase_33 AC 560 ms
83,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,heapq
input = sys.stdin.buffer.readline
n,k=map(int,input().split())
A=[int(i) for i in input().split()]
DP=[0]*(2**n)
DP[0]=k
for i in range(2**n):
  for j in range(n):
    if not i&(1<<j):
      DP[i|(1<<j)]=max(DP[i|(1<<j)],DP[i]%A[j])
print(DP[-1])
0