結果

問題 No.1083 余りの余り
ユーザー neterukunneterukun
提出日時 2020-06-20 12:13:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 321 ms / 3,000 ms
コード長 288 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 77,972 KB
最終ジャッジ日時 2024-07-03 17:04:39
合計ジャッジ時間 4,310 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,616 KB
testcase_01 AC 38 ms
52,904 KB
testcase_02 AC 40 ms
53,168 KB
testcase_03 AC 38 ms
53,884 KB
testcase_04 AC 39 ms
53,316 KB
testcase_05 AC 151 ms
77,188 KB
testcase_06 AC 38 ms
52,948 KB
testcase_07 AC 39 ms
52,992 KB
testcase_08 AC 39 ms
53,208 KB
testcase_09 AC 38 ms
52,568 KB
testcase_10 AC 38 ms
52,520 KB
testcase_11 AC 38 ms
53,568 KB
testcase_12 AC 37 ms
53,752 KB
testcase_13 AC 37 ms
52,356 KB
testcase_14 AC 37 ms
53,548 KB
testcase_15 AC 37 ms
53,760 KB
testcase_16 AC 37 ms
52,688 KB
testcase_17 AC 37 ms
52,564 KB
testcase_18 AC 198 ms
76,672 KB
testcase_19 AC 144 ms
76,476 KB
testcase_20 AC 53 ms
66,796 KB
testcase_21 AC 91 ms
76,304 KB
testcase_22 AC 36 ms
51,944 KB
testcase_23 AC 252 ms
77,712 KB
testcase_24 AC 258 ms
77,168 KB
testcase_25 AC 244 ms
77,112 KB
testcase_26 AC 250 ms
77,172 KB
testcase_27 AC 38 ms
53,160 KB
testcase_28 AC 264 ms
77,396 KB
testcase_29 AC 37 ms
52,760 KB
testcase_30 AC 37 ms
52,904 KB
testcase_31 AC 37 ms
53,132 KB
testcase_32 AC 37 ms
52,136 KB
testcase_33 AC 321 ms
77,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def dfs(i, x):
    res = 0
    if i == n:
        return x
    for j in range(i + 1, n + 1):
        tmp = x % a[j]
        res = max(res, dfs(j, tmp))
    return res

n, k = map(int, input().split())
a = list(map(int, input().split()))

a = [0] + sorted(a, reverse=True)
print(dfs(0, k))
0