結果

問題 No.2880 Max Sigma Mod
ユーザー loop0919loop0919
提出日時 2024-09-08 14:54:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,364 ms / 3,000 ms
コード長 390 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 82,544 KB
実行使用メモリ 76,944 KB
最終ジャッジ日時 2024-09-08 14:54:28
合計ジャッジ時間 21,677 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,004 KB
testcase_01 AC 48 ms
61,012 KB
testcase_02 AC 51 ms
63,840 KB
testcase_03 AC 53 ms
65,260 KB
testcase_04 AC 47 ms
62,084 KB
testcase_05 AC 1,116 ms
76,216 KB
testcase_06 AC 864 ms
76,196 KB
testcase_07 AC 544 ms
76,120 KB
testcase_08 AC 442 ms
76,408 KB
testcase_09 AC 247 ms
76,280 KB
testcase_10 AC 403 ms
76,616 KB
testcase_11 AC 659 ms
76,228 KB
testcase_12 AC 235 ms
76,140 KB
testcase_13 AC 110 ms
76,400 KB
testcase_14 AC 596 ms
76,412 KB
testcase_15 AC 1,364 ms
76,520 KB
testcase_16 AC 1,355 ms
76,624 KB
testcase_17 AC 1,351 ms
76,144 KB
testcase_18 AC 1,350 ms
76,492 KB
testcase_19 AC 1,358 ms
76,180 KB
testcase_20 AC 73 ms
76,164 KB
testcase_21 AC 308 ms
76,180 KB
testcase_22 AC 650 ms
76,256 KB
testcase_23 AC 73 ms
76,944 KB
testcase_24 AC 361 ms
76,324 KB
testcase_25 AC 1,087 ms
76,320 KB
testcase_26 AC 1,133 ms
76,316 KB
testcase_27 AC 1,114 ms
76,312 KB
testcase_28 AC 1,277 ms
76,056 KB
testcase_29 AC 464 ms
76,744 KB
testcase_30 AC 38 ms
53,596 KB
testcase_31 AC 38 ms
53,312 KB
testcase_32 AC 37 ms
53,092 KB
testcase_33 AC 37 ms
53,432 KB
testcase_34 AC 38 ms
53,764 KB
testcase_35 AC 38 ms
53,512 KB
testcase_36 AC 38 ms
52,684 KB
testcase_37 AC 38 ms
53,136 KB
testcase_38 AC 39 ms
53,600 KB
testcase_39 AC 39 ms
52,956 KB
testcase_40 AC 39 ms
52,540 KB
testcase_41 AC 38 ms
52,292 KB
testcase_42 AC 38 ms
52,484 KB
testcase_43 AC 38 ms
53,356 KB
testcase_44 AC 38 ms
53,120 KB
testcase_45 AC 38 ms
52,140 KB
testcase_46 AC 39 ms
52,664 KB
testcase_47 AC 39 ms
53,612 KB
testcase_48 AC 39 ms
52,544 KB
testcase_49 AC 44 ms
59,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())


def divisors(n):
    divs = []
    for i in range(1, int(n**0.5) + 1):
        if n % i == 0:
            divs.append(i)
            if i != n // i:
                divs.append(n // i)
    return divs


val = 0
ans = val

for x in range(1, N + 1):
    diff = M - sum([d for d in divisors(x) if d <= M])
    val += diff
    ans = max(ans, val)

print(ans)
0