結果

問題 No.1083 余りの余り
ユーザー irumo8202irumo8202
提出日時 2022-01-23 08:04:28
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 263 bytes
コンパイル時間 99 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 44,432 KB
最終ジャッジ日時 2024-11-29 03:19:27
合計ジャッジ時間 43,857 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,022 ms
43,920 KB
testcase_01 AC 1,079 ms
44,032 KB
testcase_02 AC 1,129 ms
44,296 KB
testcase_03 AC 1,059 ms
43,792 KB
testcase_04 AC 1,224 ms
44,044 KB
testcase_05 AC 1,394 ms
44,180 KB
testcase_06 AC 954 ms
44,176 KB
testcase_07 AC 1,171 ms
43,920 KB
testcase_08 AC 1,128 ms
44,172 KB
testcase_09 AC 1,151 ms
44,296 KB
testcase_10 AC 1,131 ms
44,168 KB
testcase_11 AC 1,165 ms
44,300 KB
testcase_12 AC 1,123 ms
44,052 KB
testcase_13 AC 1,116 ms
44,168 KB
testcase_14 AC 953 ms
44,304 KB
testcase_15 AC 970 ms
43,660 KB
testcase_16 AC 1,011 ms
44,292 KB
testcase_17 AC 1,030 ms
44,168 KB
testcase_18 AC 1,433 ms
44,048 KB
testcase_19 AC 1,399 ms
43,920 KB
testcase_20 AC 1,246 ms
43,920 KB
testcase_21 AC 1,312 ms
43,904 KB
testcase_22 AC 980 ms
44,024 KB
testcase_23 AC 1,435 ms
44,304 KB
testcase_24 AC 1,447 ms
44,432 KB
testcase_25 AC 1,446 ms
44,040 KB
testcase_26 AC 1,426 ms
44,044 KB
testcase_27 AC 1,128 ms
44,292 KB
testcase_28 WA -
testcase_29 AC 945 ms
44,296 KB
testcase_30 AC 974 ms
43,916 KB
testcase_31 AC 1,029 ms
44,296 KB
testcase_32 AC 1,058 ms
44,168 KB
testcase_33 AC 1,452 ms
44,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

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

rng = np.random.default_rng()

ans = 0

for i in range(100000):
    rng.shuffle(A)
    tmp = K
    for a in A:
        tmp %= a
    ans = max(ans, tmp)

print(ans)
0