結果

問題 No.1083 余りの余り
ユーザー ntudantuda
提出日時 2021-09-12 14:03:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 129 ms / 3,000 ms
コード長 248 bytes
コンパイル時間 206 ms
コンパイル使用メモリ 82,980 KB
実行使用メモリ 75,892 KB
最終ジャッジ日時 2024-06-24 03:00:56
合計ジャッジ時間 3,818 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,676 KB
testcase_01 AC 41 ms
52,536 KB
testcase_02 AC 39 ms
52,400 KB
testcase_03 AC 42 ms
52,500 KB
testcase_04 AC 44 ms
52,672 KB
testcase_05 AC 82 ms
75,540 KB
testcase_06 AC 42 ms
52,392 KB
testcase_07 AC 46 ms
52,396 KB
testcase_08 AC 43 ms
53,312 KB
testcase_09 AC 48 ms
52,420 KB
testcase_10 AC 43 ms
53,164 KB
testcase_11 AC 41 ms
52,280 KB
testcase_12 AC 41 ms
53,620 KB
testcase_13 AC 44 ms
53,040 KB
testcase_14 AC 42 ms
52,736 KB
testcase_15 AC 40 ms
51,944 KB
testcase_16 AC 40 ms
52,552 KB
testcase_17 AC 40 ms
52,156 KB
testcase_18 AC 90 ms
75,852 KB
testcase_19 AC 71 ms
75,856 KB
testcase_20 AC 47 ms
61,752 KB
testcase_21 AC 51 ms
73,124 KB
testcase_22 AC 39 ms
52,400 KB
testcase_23 AC 125 ms
75,640 KB
testcase_24 AC 125 ms
75,760 KB
testcase_25 AC 127 ms
75,500 KB
testcase_26 AC 127 ms
75,892 KB
testcase_27 AC 40 ms
52,676 KB
testcase_28 AC 129 ms
75,392 KB
testcase_29 AC 39 ms
52,408 KB
testcase_30 AC 40 ms
52,292 KB
testcase_31 AC 39 ms
52,528 KB
testcase_32 AC 39 ms
53,776 KB
testcase_33 AC 128 ms
75,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
A = list(map(int, input().split()))
A.sort()
ans = 0
def dfs(k, x):
    global ans
    if x == 0:
        ans = max(ans, k % A[0])
        return
    for i in range(x):
        dfs(k % A[i], i)

dfs(K, N)
print(ans)
0