結果

問題 No.1083 余りの余り
ユーザー rei60rei60
提出日時 2020-11-07 11:53:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 238 ms / 3,000 ms
コード長 314 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 75,808 KB
最終ジャッジ日時 2024-07-22 14:27:43
合計ジャッジ時間 4,137 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,684 KB
testcase_01 AC 38 ms
52,464 KB
testcase_02 AC 37 ms
53,560 KB
testcase_03 AC 38 ms
52,492 KB
testcase_04 AC 44 ms
60,868 KB
testcase_05 AC 88 ms
75,256 KB
testcase_06 AC 37 ms
53,252 KB
testcase_07 AC 44 ms
60,312 KB
testcase_08 AC 37 ms
52,856 KB
testcase_09 AC 38 ms
52,676 KB
testcase_10 AC 40 ms
52,076 KB
testcase_11 AC 45 ms
60,452 KB
testcase_12 AC 38 ms
52,676 KB
testcase_13 AC 38 ms
52,140 KB
testcase_14 AC 38 ms
53,264 KB
testcase_15 AC 37 ms
52,748 KB
testcase_16 AC 37 ms
53,564 KB
testcase_17 AC 37 ms
52,612 KB
testcase_18 AC 140 ms
75,576 KB
testcase_19 AC 88 ms
75,600 KB
testcase_20 AC 44 ms
61,932 KB
testcase_21 AC 49 ms
63,084 KB
testcase_22 AC 38 ms
52,404 KB
testcase_23 AC 236 ms
75,644 KB
testcase_24 AC 238 ms
75,324 KB
testcase_25 AC 237 ms
75,808 KB
testcase_26 AC 235 ms
75,368 KB
testcase_27 AC 38 ms
52,616 KB
testcase_28 AC 233 ms
75,260 KB
testcase_29 AC 37 ms
52,192 KB
testcase_30 AC 39 ms
51,996 KB
testcase_31 AC 38 ms
51,872 KB
testcase_32 AC 38 ms
53,128 KB
testcase_33 AC 235 ms
75,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import product
N, K = map(int,input().split())
A = list(map(int, input().split()))

A.sort(reverse=True)
B = A[:-1]
ans = 0
for i in product([0,1], repeat=N-1):
    temp = K
    for idx,j in enumerate(i):
        if j:
            temp %= B[idx]
            
    ans = max(ans,temp%A[-1])
print(ans)
0