結果

問題 No.2880 Max Sigma Mod
ユーザー rlangevinrlangevin
提出日時 2024-10-03 08:51:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 3,000 ms
コード長 313 bytes
コンパイル時間 332 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 76,180 KB
最終ジャッジ日時 2024-10-03 08:51:42
合計ジャッジ時間 4,651 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
64,296 KB
testcase_01 AC 48 ms
65,484 KB
testcase_02 AC 45 ms
65,892 KB
testcase_03 AC 49 ms
65,932 KB
testcase_04 AC 50 ms
64,788 KB
testcase_05 AC 67 ms
70,900 KB
testcase_06 AC 64 ms
69,412 KB
testcase_07 AC 70 ms
72,656 KB
testcase_08 AC 62 ms
71,248 KB
testcase_09 AC 58 ms
70,476 KB
testcase_10 AC 53 ms
67,200 KB
testcase_11 AC 73 ms
74,896 KB
testcase_12 AC 53 ms
66,236 KB
testcase_13 AC 58 ms
70,528 KB
testcase_14 AC 60 ms
68,476 KB
testcase_15 AC 76 ms
75,084 KB
testcase_16 AC 72 ms
76,180 KB
testcase_17 AC 77 ms
75,712 KB
testcase_18 AC 78 ms
76,080 KB
testcase_19 AC 78 ms
75,436 KB
testcase_20 AC 55 ms
71,372 KB
testcase_21 AC 61 ms
72,392 KB
testcase_22 AC 70 ms
72,824 KB
testcase_23 AC 58 ms
69,040 KB
testcase_24 AC 59 ms
72,508 KB
testcase_25 AC 66 ms
70,196 KB
testcase_26 AC 77 ms
73,800 KB
testcase_27 AC 69 ms
70,028 KB
testcase_28 AC 71 ms
71,044 KB
testcase_29 AC 64 ms
69,352 KB
testcase_30 AC 43 ms
63,464 KB
testcase_31 AC 47 ms
62,136 KB
testcase_32 AC 55 ms
64,436 KB
testcase_33 AC 45 ms
62,944 KB
testcase_34 AC 45 ms
62,356 KB
testcase_35 AC 45 ms
62,864 KB
testcase_36 AC 53 ms
65,004 KB
testcase_37 AC 45 ms
62,276 KB
testcase_38 AC 42 ms
63,244 KB
testcase_39 AC 43 ms
62,512 KB
testcase_40 AC 48 ms
62,800 KB
testcase_41 AC 52 ms
64,268 KB
testcase_42 AC 45 ms
63,400 KB
testcase_43 AC 41 ms
62,660 KB
testcase_44 AC 48 ms
63,568 KB
testcase_45 AC 46 ms
62,252 KB
testcase_46 AC 42 ms
63,200 KB
testcase_47 AC 51 ms
64,340 KB
testcase_48 AC 46 ms
62,912 KB
testcase_49 AC 45 ms
63,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
K = 505050
ans = [0] * K
for i in range(2, M + 1):
    for j in range(0, N + 1, i):
        ans[j] += 1
        ans[j + i - 1] -= i
        ans[j + i] += i - 1
    
for i in range(K - 1):
    ans[i + 1] += ans[i]
for i in range(K - 1):
    ans[i + 1] += ans[i]
print(max(ans[:N]))
0