結果

問題 No.2880 Max Sigma Mod
ユーザー sortA0329sortA0329
提出日時 2024-08-02 08:39:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,206 ms / 3,000 ms
コード長 561 bytes
コンパイル時間 367 ms
コンパイル使用メモリ 82,420 KB
実行使用メモリ 76,104 KB
最終ジャッジ日時 2024-08-02 08:40:15
合計ジャッジ時間 19,559 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,196 KB
testcase_01 AC 41 ms
59,300 KB
testcase_02 AC 43 ms
59,920 KB
testcase_03 AC 44 ms
59,304 KB
testcase_04 AC 42 ms
58,916 KB
testcase_05 AC 981 ms
75,656 KB
testcase_06 AC 761 ms
75,336 KB
testcase_07 AC 468 ms
75,280 KB
testcase_08 AC 381 ms
75,336 KB
testcase_09 AC 208 ms
75,284 KB
testcase_10 AC 345 ms
75,712 KB
testcase_11 AC 548 ms
75,480 KB
testcase_12 AC 198 ms
75,708 KB
testcase_13 AC 93 ms
75,596 KB
testcase_14 AC 495 ms
75,488 KB
testcase_15 AC 1,206 ms
75,328 KB
testcase_16 AC 1,201 ms
75,832 KB
testcase_17 AC 1,196 ms
75,328 KB
testcase_18 AC 1,194 ms
75,400 KB
testcase_19 AC 1,204 ms
75,420 KB
testcase_20 AC 53 ms
65,804 KB
testcase_21 AC 254 ms
75,472 KB
testcase_22 AC 537 ms
75,352 KB
testcase_23 AC 55 ms
64,744 KB
testcase_24 AC 308 ms
75,680 KB
testcase_25 AC 949 ms
75,556 KB
testcase_26 AC 980 ms
75,436 KB
testcase_27 AC 993 ms
75,720 KB
testcase_28 AC 1,133 ms
76,104 KB
testcase_29 AC 403 ms
75,496 KB
testcase_30 AC 36 ms
52,800 KB
testcase_31 AC 37 ms
52,268 KB
testcase_32 AC 66 ms
52,816 KB
testcase_33 AC 37 ms
52,068 KB
testcase_34 AC 36 ms
52,616 KB
testcase_35 AC 36 ms
52,896 KB
testcase_36 AC 36 ms
52,964 KB
testcase_37 AC 36 ms
53,312 KB
testcase_38 AC 36 ms
52,528 KB
testcase_39 AC 36 ms
52,108 KB
testcase_40 AC 38 ms
52,212 KB
testcase_41 AC 37 ms
52,596 KB
testcase_42 AC 38 ms
52,700 KB
testcase_43 AC 38 ms
53,944 KB
testcase_44 AC 38 ms
53,040 KB
testcase_45 AC 38 ms
51,752 KB
testcase_46 AC 38 ms
52,524 KB
testcase_47 AC 37 ms
52,676 KB
testcase_48 AC 37 ms
52,864 KB
testcase_49 AC 40 ms
58,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

# 「増加分」の計算 O(√x)
def calc(x : int):    
    res = M
    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 += calc(x)
    res = max(res, modsum)
print(res)
0