結果

問題 No.1083 余りの余り
ユーザー hedwig100hedwig100
提出日時 2020-06-19 21:59:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 400 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 84,372 KB
最終ジャッジ日時 2024-07-03 14:29:25
合計ジャッジ時間 6,190 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,504 KB
testcase_01 AC 37 ms
53,788 KB
testcase_02 AC 42 ms
61,420 KB
testcase_03 AC 35 ms
53,832 KB
testcase_04 WA -
testcase_05 AC 158 ms
77,936 KB
testcase_06 AC 35 ms
52,152 KB
testcase_07 AC 44 ms
60,988 KB
testcase_08 AC 41 ms
59,592 KB
testcase_09 AC 35 ms
53,756 KB
testcase_10 AC 41 ms
61,416 KB
testcase_11 WA -
testcase_12 AC 35 ms
52,636 KB
testcase_13 AC 36 ms
53,712 KB
testcase_14 AC 35 ms
52,828 KB
testcase_15 AC 35 ms
52,752 KB
testcase_16 AC 35 ms
53,068 KB
testcase_17 AC 37 ms
52,124 KB
testcase_18 WA -
testcase_19 AC 161 ms
77,696 KB
testcase_20 AC 45 ms
63,116 KB
testcase_21 AC 55 ms
64,932 KB
testcase_22 AC 36 ms
52,824 KB
testcase_23 AC 568 ms
83,720 KB
testcase_24 AC 568 ms
84,100 KB
testcase_25 AC 570 ms
83,844 KB
testcase_26 AC 571 ms
84,120 KB
testcase_27 AC 42 ms
60,528 KB
testcase_28 WA -
testcase_29 AC 36 ms
52,332 KB
testcase_30 AC 36 ms
52,612 KB
testcase_31 AC 36 ms
52,244 KB
testcase_32 AC 36 ms
52,220 KB
testcase_33 AC 572 ms
83,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10000000)
MOD = 10 ** 9 + 7
INF = 10 ** 15

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

    dp = [0] * (1<<N)
    dp[0] = K
    for s in range(1<<N):
        for i in range(N):
            if ((s>>i)&1) == 0:
                dp[s|(1<<i)] = max(dp[s|(1<<i)],dp[s]%A[i])
    print(dp[-1])
if __name__ == '__main__':
    main()
0