結果

問題 No.1083 余りの余り
ユーザー U SU S
提出日時 2020-06-19 22:17:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 405 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 55,584 KB
最終ジャッジ日時 2024-07-03 14:55:55
合計ジャッジ時間 2,663 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,556 KB
testcase_01 AC 46 ms
54,016 KB
testcase_02 AC 43 ms
53,932 KB
testcase_03 AC 42 ms
53,852 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 43 ms
54,464 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 47 ms
53,544 KB
testcase_10 AC 43 ms
53,616 KB
testcase_11 AC 44 ms
53,204 KB
testcase_12 AC 43 ms
53,912 KB
testcase_13 AC 44 ms
53,636 KB
testcase_14 AC 43 ms
54,644 KB
testcase_15 AC 43 ms
53,560 KB
testcase_16 AC 43 ms
53,876 KB
testcase_17 AC 43 ms
53,780 KB
testcase_18 WA -
testcase_19 AC 45 ms
53,492 KB
testcase_20 AC 44 ms
54,516 KB
testcase_21 AC 43 ms
53,692 KB
testcase_22 AC 44 ms
54,044 KB
testcase_23 AC 43 ms
54,220 KB
testcase_24 WA -
testcase_25 AC 43 ms
53,664 KB
testcase_26 WA -
testcase_27 AC 43 ms
53,992 KB
testcase_28 WA -
testcase_29 AC 42 ms
55,584 KB
testcase_30 AC 43 ms
54,068 KB
testcase_31 AC 44 ms
54,408 KB
testcase_32 AC 43 ms
54,276 KB
testcase_33 AC 43 ms
54,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
a = list(map(int,input().split()))
a.sort()
nax = 0
# for i in range(n):
#     u = a[:i]
#     crt = k % a[i]
#     for j in range(len(u)):
#         v = a[:j]
#         while v:
#             crt %= st
#
#
#
#     nax = max(nax,crt)
import copy
for i in range(n):
    u = copy.deepcopy(k)
    for j in range(i, -1, -1):
        u %= a[j]
    nax = max(nax, u)

print(nax)

0