結果

問題 No.1083 余りの余り
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-06-28 20:22:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 204 ms / 3,000 ms
コード長 259 bytes
コンパイル時間 253 ms
コンパイル使用メモリ 82,592 KB
実行使用メモリ 76,088 KB
最終ジャッジ日時 2024-06-25 14:59:58
合計ジャッジ時間 3,801 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,996 KB
testcase_01 AC 37 ms
52,244 KB
testcase_02 AC 40 ms
53,024 KB
testcase_03 AC 39 ms
51,944 KB
testcase_04 AC 43 ms
60,556 KB
testcase_05 AC 83 ms
66,452 KB
testcase_06 AC 40 ms
53,656 KB
testcase_07 AC 40 ms
60,416 KB
testcase_08 AC 40 ms
52,800 KB
testcase_09 AC 34 ms
52,756 KB
testcase_10 AC 34 ms
52,876 KB
testcase_11 AC 43 ms
59,680 KB
testcase_12 AC 35 ms
53,020 KB
testcase_13 AC 35 ms
52,568 KB
testcase_14 AC 36 ms
52,988 KB
testcase_15 AC 34 ms
52,528 KB
testcase_16 AC 34 ms
52,060 KB
testcase_17 AC 33 ms
53,416 KB
testcase_18 AC 113 ms
72,596 KB
testcase_19 AC 82 ms
66,108 KB
testcase_20 AC 43 ms
61,248 KB
testcase_21 AC 45 ms
60,800 KB
testcase_22 AC 36 ms
53,324 KB
testcase_23 AC 199 ms
75,504 KB
testcase_24 AC 197 ms
75,720 KB
testcase_25 AC 193 ms
76,088 KB
testcase_26 AC 200 ms
75,636 KB
testcase_27 AC 38 ms
52,476 KB
testcase_28 AC 204 ms
75,636 KB
testcase_29 AC 36 ms
52,284 KB
testcase_30 AC 35 ms
52,080 KB
testcase_31 AC 35 ms
52,420 KB
testcase_32 AC 35 ms
52,244 KB
testcase_33 AC 191 ms
76,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
a = list(map(int, input().split()))
a.sort(reverse=True)
ans = 0
for b in range(1 << n - 1):
    k2 = k
    for i in range(n - 1):
        if b >> i & 1:
            k2 %= a[i]
    k2 %= a[-1]
    ans = max(ans, k2)
print(ans)
0