結果

問題 No.2880 Max Sigma Mod
ユーザー sortA0329sortA0329
提出日時 2024-08-01 19:29:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,181 ms / 3,000 ms
コード長 565 bytes
コンパイル時間 404 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 75,888 KB
最終ジャッジ日時 2024-08-01 19:29:34
合計ジャッジ時間 19,390 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,224 KB
testcase_01 AC 40 ms
58,368 KB
testcase_02 AC 43 ms
59,008 KB
testcase_03 AC 42 ms
59,392 KB
testcase_04 AC 45 ms
58,496 KB
testcase_05 AC 913 ms
75,888 KB
testcase_06 AC 736 ms
75,352 KB
testcase_07 AC 461 ms
75,264 KB
testcase_08 AC 376 ms
75,392 KB
testcase_09 AC 205 ms
75,352 KB
testcase_10 AC 340 ms
75,392 KB
testcase_11 AC 537 ms
75,520 KB
testcase_12 AC 196 ms
75,648 KB
testcase_13 AC 88 ms
75,712 KB
testcase_14 AC 493 ms
75,648 KB
testcase_15 AC 1,181 ms
75,776 KB
testcase_16 AC 1,161 ms
75,264 KB
testcase_17 AC 1,136 ms
75,288 KB
testcase_18 AC 1,158 ms
75,520 KB
testcase_19 AC 1,169 ms
75,392 KB
testcase_20 AC 55 ms
65,280 KB
testcase_21 AC 254 ms
75,548 KB
testcase_22 AC 546 ms
75,392 KB
testcase_23 AC 54 ms
64,512 KB
testcase_24 AC 306 ms
75,264 KB
testcase_25 AC 925 ms
75,776 KB
testcase_26 AC 969 ms
75,648 KB
testcase_27 AC 926 ms
75,392 KB
testcase_28 AC 1,084 ms
75,392 KB
testcase_29 AC 416 ms
75,712 KB
testcase_30 AC 37 ms
51,840 KB
testcase_31 AC 37 ms
52,352 KB
testcase_32 AC 36 ms
52,096 KB
testcase_33 AC 37 ms
51,712 KB
testcase_34 AC 35 ms
52,128 KB
testcase_35 AC 36 ms
51,944 KB
testcase_36 AC 36 ms
52,352 KB
testcase_37 AC 37 ms
51,712 KB
testcase_38 AC 37 ms
51,840 KB
testcase_39 AC 35 ms
51,840 KB
testcase_40 AC 37 ms
51,752 KB
testcase_41 AC 36 ms
52,096 KB
testcase_42 AC 37 ms
51,968 KB
testcase_43 AC 36 ms
51,840 KB
testcase_44 AC 36 ms
52,352 KB
testcase_45 AC 38 ms
52,352 KB
testcase_46 AC 37 ms
51,968 KB
testcase_47 AC 38 ms
51,840 KB
testcase_48 AC 37 ms
52,352 KB
testcase_49 AC 41 ms
58,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 入力を受け取る
N, M = map(int, input().split())

# 「増加分」の計算 O(√x)
def calc(x : int):    
    res = 0
    i = 1
    while i * i <= x:
        if x % i == 0:
            if i <= M: res -= i
            # i * i == x の時は i == x / i なので重複してしまう
            if i * i != x and x // i <= M: res -= x // i
        i += 1
    return res

# 1 <= x <= N を満たすxについて sum(x mod i) の最大値を計算 
res = 0
modsum = 0
for x in range(1, N + 1):
    modsum += M + calc(x)
    res = max(res, modsum)
print(res)
0