結果

問題 No.2880 Max Sigma Mod
ユーザー nmoonnmoon
提出日時 2024-09-09 14:19:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,347 ms / 3,000 ms
コード長 246 bytes
コンパイル時間 433 ms
コンパイル使用メモリ 82,848 KB
実行使用メモリ 84,116 KB
最終ジャッジ日時 2024-09-09 14:20:01
合計ジャッジ時間 21,334 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,380 KB
testcase_01 AC 46 ms
60,268 KB
testcase_02 AC 50 ms
62,516 KB
testcase_03 AC 52 ms
63,868 KB
testcase_04 AC 47 ms
60,712 KB
testcase_05 AC 1,112 ms
82,424 KB
testcase_06 AC 860 ms
81,888 KB
testcase_07 AC 530 ms
80,428 KB
testcase_08 AC 433 ms
80,840 KB
testcase_09 AC 233 ms
77,612 KB
testcase_10 AC 390 ms
79,840 KB
testcase_11 AC 627 ms
80,504 KB
testcase_12 AC 224 ms
77,744 KB
testcase_13 AC 94 ms
71,740 KB
testcase_14 AC 564 ms
80,388 KB
testcase_15 AC 1,336 ms
82,816 KB
testcase_16 AC 1,338 ms
82,800 KB
testcase_17 AC 1,341 ms
82,952 KB
testcase_18 AC 1,339 ms
82,692 KB
testcase_19 AC 1,347 ms
83,196 KB
testcase_20 AC 59 ms
65,852 KB
testcase_21 AC 321 ms
78,640 KB
testcase_22 AC 614 ms
80,532 KB
testcase_23 AC 59 ms
65,708 KB
testcase_24 AC 349 ms
79,144 KB
testcase_25 AC 1,070 ms
82,560 KB
testcase_26 AC 1,138 ms
82,408 KB
testcase_27 AC 1,125 ms
82,560 KB
testcase_28 AC 1,258 ms
84,116 KB
testcase_29 AC 456 ms
80,864 KB
testcase_30 AC 38 ms
52,548 KB
testcase_31 AC 37 ms
52,860 KB
testcase_32 AC 38 ms
51,872 KB
testcase_33 AC 38 ms
52,004 KB
testcase_34 AC 38 ms
52,700 KB
testcase_35 AC 38 ms
53,092 KB
testcase_36 AC 37 ms
53,604 KB
testcase_37 AC 37 ms
53,164 KB
testcase_38 AC 38 ms
52,680 KB
testcase_39 AC 39 ms
52,808 KB
testcase_40 AC 38 ms
52,248 KB
testcase_41 AC 37 ms
52,712 KB
testcase_42 AC 37 ms
52,600 KB
testcase_43 AC 37 ms
53,352 KB
testcase_44 AC 38 ms
52,528 KB
testcase_45 AC 37 ms
52,996 KB
testcase_46 AC 38 ms
52,864 KB
testcase_47 AC 38 ms
53,116 KB
testcase_48 AC 38 ms
53,084 KB
testcase_49 AC 43 ms
60,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
d=[0]
for i in range(1,n+1):
	ans=d[-1]+m
	div=[]
	for j in range(1,int(i**0.5)+1):
		if i%j==0:
			div.append(j)
			if j!=i//j:
			    div.append(i//j)
	for j in div:
		if j<=m:
			ans-=j
	d.append(ans)
print(max(d))
0