結果

問題 No.1083 余りの余り
ユーザー tanon710tanon710
提出日時 2020-06-20 00:44:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 297 ms / 3,000 ms
コード長 251 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 76,044 KB
最終ジャッジ日時 2024-07-03 16:21:32
合計ジャッジ時間 4,101 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,872 KB
testcase_01 AC 38 ms
52,000 KB
testcase_02 AC 41 ms
53,360 KB
testcase_03 AC 39 ms
52,376 KB
testcase_04 AC 47 ms
61,104 KB
testcase_05 AC 83 ms
67,836 KB
testcase_06 AC 36 ms
52,340 KB
testcase_07 AC 45 ms
59,432 KB
testcase_08 AC 39 ms
53,620 KB
testcase_09 AC 39 ms
53,008 KB
testcase_10 AC 36 ms
52,656 KB
testcase_11 AC 40 ms
60,252 KB
testcase_12 AC 36 ms
53,500 KB
testcase_13 AC 36 ms
52,284 KB
testcase_14 AC 39 ms
52,256 KB
testcase_15 AC 35 ms
52,940 KB
testcase_16 AC 37 ms
52,120 KB
testcase_17 AC 35 ms
53,144 KB
testcase_18 AC 120 ms
72,936 KB
testcase_19 AC 79 ms
67,244 KB
testcase_20 AC 41 ms
60,804 KB
testcase_21 AC 46 ms
62,444 KB
testcase_22 AC 34 ms
53,032 KB
testcase_23 AC 269 ms
76,044 KB
testcase_24 AC 279 ms
76,032 KB
testcase_25 AC 290 ms
75,776 KB
testcase_26 AC 277 ms
75,744 KB
testcase_27 AC 37 ms
52,224 KB
testcase_28 AC 297 ms
75,964 KB
testcase_29 AC 37 ms
52,872 KB
testcase_30 AC 36 ms
52,076 KB
testcase_31 AC 37 ms
52,724 KB
testcase_32 AC 35 ms
52,564 KB
testcase_33 AC 281 ms
75,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
arr=list(map(int,input().split()))
arr=sorted(arr,reverse=True)
ans=0
for i in range(2**(n-1)):
    tmp=k
    for j in range(n):
        if i&(1<<j):
            tmp%=arr[j]
    tmp%=arr[-1]
    ans=max(ans,tmp)
print(ans)
0