結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 867 ms
44,040 KB
testcase_01 AC 896 ms
43,912 KB
testcase_02 AC 1,016 ms
44,052 KB
testcase_03 AC 979 ms
44,172 KB
testcase_04 AC 1,097 ms
44,040 KB
testcase_05 AC 1,212 ms
44,428 KB
testcase_06 AC 878 ms
44,292 KB
testcase_07 AC 1,006 ms
43,916 KB
testcase_08 AC 978 ms
44,296 KB
testcase_09 AC 983 ms
44,040 KB
testcase_10 AC 1,003 ms
44,296 KB
testcase_11 AC 1,029 ms
44,424 KB
testcase_12 AC 943 ms
43,912 KB
testcase_13 AC 1,024 ms
44,044 KB
testcase_14 AC 821 ms
44,052 KB
testcase_15 AC 839 ms
44,164 KB
testcase_16 AC 991 ms
44,292 KB
testcase_17 AC 913 ms
44,428 KB
testcase_18 AC 1,308 ms
44,144 KB
testcase_19 AC 1,346 ms
44,168 KB
testcase_20 AC 1,127 ms
44,308 KB
testcase_21 AC 1,245 ms
44,168 KB
testcase_22 AC 854 ms
44,044 KB
testcase_23 AC 1,283 ms
44,048 KB
testcase_24 AC 1,277 ms
44,432 KB
testcase_25 AC 1,293 ms
44,168 KB
testcase_26 AC 1,462 ms
44,420 KB
testcase_27 AC 989 ms
44,176 KB
testcase_28 WA -
testcase_29 AC 809 ms
44,044 KB
testcase_30 AC 905 ms
44,428 KB
testcase_31 AC 899 ms
44,416 KB
testcase_32 AC 906 ms
44,164 KB
testcase_33 AC 1,318 ms
44,300 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