結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,497 ms
43,908 KB
testcase_01 AC 1,592 ms
44,300 KB
testcase_02 AC 1,745 ms
43,908 KB
testcase_03 AC 1,600 ms
44,040 KB
testcase_04 AC 1,836 ms
44,048 KB
testcase_05 AC 2,223 ms
44,300 KB
testcase_06 AC 1,376 ms
43,660 KB
testcase_07 AC 1,879 ms
44,040 KB
testcase_08 AC 1,764 ms
43,908 KB
testcase_09 AC 1,704 ms
44,048 KB
testcase_10 AC 1,777 ms
43,908 KB
testcase_11 AC 1,863 ms
43,916 KB
testcase_12 AC 1,721 ms
44,296 KB
testcase_13 AC 1,701 ms
44,164 KB
testcase_14 AC 1,367 ms
43,912 KB
testcase_15 AC 1,370 ms
44,428 KB
testcase_16 AC 1,509 ms
44,172 KB
testcase_17 AC 1,538 ms
43,916 KB
testcase_18 AC 2,369 ms
43,924 KB
testcase_19 AC 2,208 ms
44,040 KB
testcase_20 AC 1,965 ms
44,296 KB
testcase_21 AC 2,114 ms
44,036 KB
testcase_22 AC 1,418 ms
44,308 KB
testcase_23 AC 2,379 ms
43,912 KB
testcase_24 AC 2,324 ms
43,912 KB
testcase_25 AC 2,375 ms
43,924 KB
testcase_26 AC 2,332 ms
44,168 KB
testcase_27 AC 1,747 ms
44,436 KB
testcase_28 WA -
testcase_29 AC 1,349 ms
44,300 KB
testcase_30 AC 1,433 ms
44,176 KB
testcase_31 AC 1,503 ms
43,916 KB
testcase_32 AC 1,628 ms
43,920 KB
testcase_33 AC 2,404 ms
44,044 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