結果

問題 No.2880 Max Sigma Mod
ユーザー timitimi
提出日時 2024-11-11 08:47:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 519 ms / 3,000 ms
コード長 311 bytes
コンパイル時間 518 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 135,168 KB
最終ジャッジ日時 2024-11-11 08:48:10
合計ジャッジ時間 25,680 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 457 ms
126,592 KB
testcase_01 AC 429 ms
126,208 KB
testcase_02 AC 437 ms
126,208 KB
testcase_03 AC 453 ms
126,208 KB
testcase_04 AC 437 ms
126,336 KB
testcase_05 AC 490 ms
134,528 KB
testcase_06 AC 518 ms
134,144 KB
testcase_07 AC 451 ms
133,888 KB
testcase_08 AC 518 ms
133,760 KB
testcase_09 AC 443 ms
133,632 KB
testcase_10 AC 460 ms
134,016 KB
testcase_11 AC 483 ms
134,272 KB
testcase_12 AC 453 ms
134,016 KB
testcase_13 AC 519 ms
133,376 KB
testcase_14 AC 439 ms
134,144 KB
testcase_15 AC 472 ms
135,168 KB
testcase_16 AC 505 ms
134,912 KB
testcase_17 AC 488 ms
134,912 KB
testcase_18 AC 511 ms
134,784 KB
testcase_19 AC 464 ms
134,656 KB
testcase_20 AC 407 ms
126,336 KB
testcase_21 AC 482 ms
133,632 KB
testcase_22 AC 453 ms
134,528 KB
testcase_23 AC 405 ms
126,592 KB
testcase_24 AC 465 ms
134,016 KB
testcase_25 AC 465 ms
134,656 KB
testcase_26 AC 483 ms
134,400 KB
testcase_27 AC 506 ms
134,912 KB
testcase_28 AC 480 ms
134,784 KB
testcase_29 AC 486 ms
133,888 KB
testcase_30 AC 432 ms
126,336 KB
testcase_31 AC 426 ms
126,464 KB
testcase_32 AC 462 ms
126,208 KB
testcase_33 AC 448 ms
125,952 KB
testcase_34 AC 455 ms
126,208 KB
testcase_35 AC 424 ms
126,336 KB
testcase_36 AC 437 ms
126,720 KB
testcase_37 AC 457 ms
126,208 KB
testcase_38 AC 415 ms
126,080 KB
testcase_39 AC 452 ms
125,952 KB
testcase_40 AC 464 ms
126,336 KB
testcase_41 AC 433 ms
126,080 KB
testcase_42 AC 421 ms
126,208 KB
testcase_43 AC 466 ms
126,080 KB
testcase_44 AC 452 ms
126,336 KB
testcase_45 AC 444 ms
126,208 KB
testcase_46 AC 448 ms
126,080 KB
testcase_47 AC 440 ms
126,592 KB
testcase_48 AC 495 ms
126,336 KB
testcase_49 AC 436 ms
126,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

dp=[0]*(N+1)
divs = [[1] for i in range(2*10**5+1)]

for i in range(2,2*10**5+1):
    for j in range(2*i,2*10**5+1,i):
        divs[j].append(i)

ans=0;c=0
for i in range(1,N+1):
  if i==1:
    c+=M-1
  else:
    p=len(divs[i])+1
    c+=M-sum(divs[i])-i
  ans=max(ans,c)
print(ans)
0