結果

問題 No.1083 余りの余り
ユーザー irumo8202irumo8202
提出日時 2022-01-23 08:07:03
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 263 bytes
コンパイル時間 363 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,556 KB
最終ジャッジ日時 2024-05-06 18:28:59
合計ジャッジ時間 62,559 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,432 ms
44,172 KB
testcase_01 AC 1,558 ms
44,556 KB
testcase_02 AC 1,687 ms
44,424 KB
testcase_03 AC 1,499 ms
44,052 KB
testcase_04 AC 1,819 ms
44,164 KB
testcase_05 AC 2,194 ms
44,168 KB
testcase_06 AC 1,328 ms
44,044 KB
testcase_07 AC 1,726 ms
44,428 KB
testcase_08 AC 1,648 ms
44,164 KB
testcase_09 AC 1,597 ms
44,300 KB
testcase_10 AC 1,623 ms
44,164 KB
testcase_11 AC 1,737 ms
44,168 KB
testcase_12 AC 1,595 ms
44,164 KB
testcase_13 AC 1,610 ms
44,424 KB
testcase_14 AC 1,284 ms
44,292 KB
testcase_15 AC 1,279 ms
44,040 KB
testcase_16 AC 1,378 ms
44,432 KB
testcase_17 AC 1,457 ms
44,292 KB
testcase_18 AC 2,312 ms
44,424 KB
testcase_19 AC 2,156 ms
44,236 KB
testcase_20 AC 1,883 ms
44,172 KB
testcase_21 AC 1,978 ms
44,164 KB
testcase_22 AC 1,299 ms
44,036 KB
testcase_23 AC 2,260 ms
44,164 KB
testcase_24 AC 2,182 ms
44,180 KB
testcase_25 AC 2,144 ms
44,292 KB
testcase_26 AC 2,191 ms
44,044 KB
testcase_27 AC 1,671 ms
44,176 KB
testcase_28 WA -
testcase_29 AC 1,313 ms
44,048 KB
testcase_30 AC 1,341 ms
44,432 KB
testcase_31 AC 1,446 ms
44,048 KB
testcase_32 AC 1,496 ms
44,424 KB
testcase_33 AC 2,233 ms
44,048 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(200000):
    rng.shuffle(A)
    tmp = K
    for a in A:
        tmp %= a
    ans = max(ans, tmp)

print(ans)
0