結果

問題 No.1083 余りの余り
ユーザー Coki628Coki628
提出日時 2020-11-20 16:52:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 940 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 165,032 KB
最終ジャッジ日時 2024-07-23 12:11:41
合計ジャッジ時間 7,611 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,548 KB
testcase_01 AC 39 ms
52,724 KB
testcase_02 AC 52 ms
65,360 KB
testcase_03 AC 37 ms
54,072 KB
testcase_04 WA -
testcase_05 AC 1,957 ms
115,300 KB
testcase_06 AC 36 ms
52,476 KB
testcase_07 AC 54 ms
66,160 KB
testcase_08 AC 50 ms
64,732 KB
testcase_09 AC 45 ms
61,496 KB
testcase_10 AC 54 ms
65,256 KB
testcase_11 WA -
testcase_12 AC 44 ms
61,712 KB
testcase_13 AC 44 ms
62,532 KB
testcase_14 AC 36 ms
53,032 KB
testcase_15 AC 35 ms
53,312 KB
testcase_16 AC 35 ms
54,276 KB
testcase_17 AC 37 ms
53,080 KB
testcase_18 TLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

def input(): return sys.stdin.readline().strip()
def list2d(a, b, c): return [[c] * b for i in range(a)]
def list3d(a, b, c, d): return [[[d] * c for k in range(b)] for i in range(a)]
def list4d(a, b, c, d, e): return [[[[e] * d for k in range(c)] for k in range(b)] for i in range(a)]
def ceil(x, y=1): return int(-(-x // y))
def INT(): return int(input())
def MAP(): return map(int, input().split())
def LIST(N=None): return list(MAP()) if N is None else [INT() for i in range(N)]
def Yes(): print('Yes')
def No(): print('No')
def YES(): print('YES')
def NO(): print('NO')
sys.setrecursionlimit(10**9)
INF = 10**19
MOD = 10**9 + 7
EPS = 10**-10

N, K = MAP()
A = LIST()

dp = list2d(N+1, 1<<N, 0)
dp[0][0] = K
for i in range(N):
    for bit in range(1<<N):
        for j in range(N):
            if not bit>>j & 1:
                dp[i+1][bit|1<<j] = max(dp[i+1][bit|1<<j], dp[i][bit] % A[j])
ans = dp[N][(1<<N)-1]
print(ans)
0