結果

問題 No.1083 余りの余り
ユーザー titiatitia
提出日時 2020-06-20 04:57:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 255 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 76,880 KB
最終ジャッジ日時 2024-07-03 16:43:25
合計ジャッジ時間 16,108 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 177 ms
76,880 KB
testcase_01 AC 150 ms
76,288 KB
testcase_02 AC 715 ms
76,548 KB
testcase_03 AC 46 ms
59,392 KB
testcase_04 AC 884 ms
76,544 KB
testcase_05 AC 1,198 ms
76,672 KB
testcase_06 AC 162 ms
76,800 KB
testcase_07 AC 420 ms
76,792 KB
testcase_08 AC 632 ms
76,436 KB
testcase_09 AC 44 ms
59,264 KB
testcase_10 AC 500 ms
76,544 KB
testcase_11 AC 788 ms
76,416 KB
testcase_12 AC 404 ms
76,672 KB
testcase_13 AC 278 ms
76,800 KB
testcase_14 AC 168 ms
76,544 KB
testcase_15 AC 44 ms
59,520 KB
testcase_16 AC 44 ms
59,520 KB
testcase_17 AC 495 ms
76,544 KB
testcase_18 AC 868 ms
76,592 KB
testcase_19 AC 758 ms
76,672 KB
testcase_20 AC 661 ms
76,792 KB
testcase_21 AC 45 ms
59,136 KB
testcase_22 AC 45 ms
59,564 KB
testcase_23 AC 895 ms
76,624 KB
testcase_24 AC 752 ms
76,544 KB
testcase_25 AC 443 ms
76,800 KB
testcase_26 AC 716 ms
76,588 KB
testcase_27 AC 536 ms
76,640 KB
testcase_28 WA -
testcase_29 AC 164 ms
76,544 KB
testcase_30 AC 45 ms
59,392 KB
testcase_31 AC 290 ms
76,536 KB
testcase_32 AC 149 ms
76,800 KB
testcase_33 AC 394 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

MIN=min(A)
ANS=K%MIN

for a in A:
    ANS=max(ANS,(K%a)%MIN)

import random

for i in range(10**6):
    T=K
    while T>=MIN:
        T%=A[random.randint(0,N-1)]
    ANS=max(ANS,T)

print(ANS)
0