結果

問題 No.2880 Max Sigma Mod
ユーザー ルクルク
提出日時 2024-09-08 13:30:55
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 378 bytes
コンパイル時間 437 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 61,304 KB
最終ジャッジ日時 2024-09-08 13:31:45
合計ジャッジ時間 49,629 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
57,996 KB
testcase_01 AC 43 ms
59,248 KB
testcase_02 AC 54 ms
60,108 KB
testcase_03 AC 52 ms
60,564 KB
testcase_04 AC 42 ms
59,564 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 TLE -
testcase_12 WA -
testcase_13 AC 1,733 ms
59,032 KB
testcase_14 WA -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 2,201 ms
60,164 KB
testcase_21 AC 2,512 ms
61,112 KB
testcase_22 WA -
testcase_23 AC 1,148 ms
59,124 KB
testcase_24 AC 2,485 ms
59,488 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 39 ms
52,824 KB
testcase_31 AC 37 ms
53,096 KB
testcase_32 AC 43 ms
58,060 KB
testcase_33 AC 39 ms
53,536 KB
testcase_34 AC 37 ms
52,624 KB
testcase_35 AC 38 ms
52,860 KB
testcase_36 AC 49 ms
58,208 KB
testcase_37 AC 38 ms
51,888 KB
testcase_38 AC 38 ms
52,520 KB
testcase_39 AC 38 ms
53,480 KB
testcase_40 AC 38 ms
52,336 KB
testcase_41 AC 51 ms
59,040 KB
testcase_42 AC 38 ms
52,412 KB
testcase_43 AC 38 ms
51,956 KB
testcase_44 AC 37 ms
52,448 KB
testcase_45 AC 39 ms
52,944 KB
testcase_46 AC 39 ms
52,200 KB
testcase_47 AC 56 ms
59,484 KB
testcase_48 AC 38 ms
52,736 KB
testcase_49 AC 44 ms
57,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
if n*m<=2*10**7:
    ans=0
    for i in range(1,n+1):
        cnt=0
        for j in range(1,m+1):
            cnt+=i%j
        ans=max(ans,cnt)
    print(ans)
else:
    ans=0
    for i in range(n,n-1000,-1):
        if i==0:
            break
        cnt=0
        for j in range(1,m+1):
            cnt+=i%j
        ans=max(ans,cnt)
    print(ans)
0