結果

問題 No.1083 余りの余り
ユーザー nehan_der_thalnehan_der_thal
提出日時 2020-06-19 21:56:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 431 ms / 3,000 ms
コード長 312 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 76,052 KB
最終ジャッジ日時 2024-07-03 14:26:43
合計ジャッジ時間 5,163 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,756 KB
testcase_01 AC 38 ms
52,184 KB
testcase_02 AC 40 ms
58,896 KB
testcase_03 AC 38 ms
52,420 KB
testcase_04 AC 44 ms
61,180 KB
testcase_05 AC 133 ms
75,388 KB
testcase_06 AC 35 ms
51,940 KB
testcase_07 AC 43 ms
61,028 KB
testcase_08 AC 43 ms
59,532 KB
testcase_09 AC 36 ms
53,820 KB
testcase_10 AC 40 ms
59,124 KB
testcase_11 AC 43 ms
61,192 KB
testcase_12 AC 38 ms
53,320 KB
testcase_13 AC 35 ms
52,340 KB
testcase_14 AC 34 ms
52,068 KB
testcase_15 AC 35 ms
53,880 KB
testcase_16 AC 34 ms
53,284 KB
testcase_17 AC 35 ms
52,636 KB
testcase_18 AC 239 ms
75,748 KB
testcase_19 AC 154 ms
76,052 KB
testcase_20 AC 45 ms
62,796 KB
testcase_21 AC 54 ms
68,080 KB
testcase_22 AC 36 ms
52,932 KB
testcase_23 AC 431 ms
75,840 KB
testcase_24 AC 418 ms
75,708 KB
testcase_25 AC 424 ms
75,660 KB
testcase_26 AC 429 ms
75,656 KB
testcase_27 AC 41 ms
59,408 KB
testcase_28 AC 427 ms
75,652 KB
testcase_29 AC 35 ms
52,952 KB
testcase_30 AC 35 ms
52,480 KB
testcase_31 AC 34 ms
52,184 KB
testcase_32 AC 35 ms
53,264 KB
testcase_33 AC 428 ms
75,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
X = sorted(list(map(int, input().split())))[::-1]
R = 0
for i in range(2**N):
    c = 0
    t = K
    cs = []
    while i:
        i, m = divmod(i, 2)
        if m:
            t = t%X[c]
            cs.append(c)
        c += 1
    R = max(R, t%X[-1])
#    print(cs, t)
print(R)
0