結果

問題 No.1083 余りの余り
ユーザー Kiri8128Kiri8128
提出日時 2020-06-20 01:13:37
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 255 bytes
コンパイル時間 572 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 77,400 KB
最終ジャッジ日時 2024-07-03 16:32:36
合計ジャッジ時間 65,668 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,841 ms
77,116 KB
testcase_01 AC 1,844 ms
77,252 KB
testcase_02 AC 1,838 ms
76,928 KB
testcase_03 AC 1,841 ms
77,176 KB
testcase_04 AC 1,840 ms
76,864 KB
testcase_05 AC 1,841 ms
77,124 KB
testcase_06 AC 1,839 ms
62,868 KB
testcase_07 AC 1,839 ms
77,168 KB
testcase_08 AC 1,841 ms
77,108 KB
testcase_09 AC 1,839 ms
76,916 KB
testcase_10 AC 1,840 ms
76,876 KB
testcase_11 AC 1,840 ms
77,192 KB
testcase_12 AC 1,841 ms
77,204 KB
testcase_13 AC 1,841 ms
77,204 KB
testcase_14 AC 1,840 ms
63,828 KB
testcase_15 AC 1,841 ms
62,372 KB
testcase_16 AC 1,839 ms
77,372 KB
testcase_17 AC 1,840 ms
77,212 KB
testcase_18 AC 1,840 ms
77,392 KB
testcase_19 AC 1,840 ms
77,220 KB
testcase_20 AC 1,840 ms
77,088 KB
testcase_21 AC 1,840 ms
77,232 KB
testcase_22 AC 1,842 ms
76,864 KB
testcase_23 AC 1,840 ms
77,232 KB
testcase_24 AC 1,839 ms
77,176 KB
testcase_25 AC 1,842 ms
77,288 KB
testcase_26 AC 1,842 ms
77,236 KB
testcase_27 AC 1,841 ms
77,000 KB
testcase_28 WA -
testcase_29 AC 1,841 ms
62,064 KB
testcase_30 AC 1,842 ms
77,132 KB
testcase_31 AC 1,840 ms
77,064 KB
testcase_32 AC 1,840 ms
77,260 KB
testcase_33 AC 1,841 ms
77,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from random import shuffle
from time import time
N, K = map(int, input().split())
A = [int(a) for a in input().split()]
sTime = time()
ma = 0
while time() - sTime < 1.8:
    shuffle(A)
    s = K
    for a in A:
        s %= a
    ma = max(ma, s)
print(ma)
0