結果

問題 No.2880 Max Sigma Mod
ユーザー ルクルク
提出日時 2024-09-08 13:30:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 377 bytes
コンパイル時間 399 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 60,984 KB
最終ジャッジ日時 2024-09-08 13:30:27
合計ジャッジ時間 8,003 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
59,172 KB
testcase_01 AC 39 ms
59,064 KB
testcase_02 AC 52 ms
60,572 KB
testcase_03 AC 49 ms
60,984 KB
testcase_04 AC 40 ms
59,748 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 199 ms
59,828 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 242 ms
58,564 KB
testcase_21 AC 267 ms
58,968 KB
testcase_22 WA -
testcase_23 AC 157 ms
58,808 KB
testcase_24 AC 274 ms
58,660 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 35 ms
52,904 KB
testcase_31 AC 35 ms
52,520 KB
testcase_32 AC 41 ms
58,216 KB
testcase_33 AC 36 ms
52,988 KB
testcase_34 AC 36 ms
53,096 KB
testcase_35 AC 36 ms
53,572 KB
testcase_36 AC 43 ms
59,240 KB
testcase_37 AC 36 ms
52,436 KB
testcase_38 AC 35 ms
53,680 KB
testcase_39 AC 35 ms
53,004 KB
testcase_40 AC 35 ms
52,476 KB
testcase_41 AC 49 ms
59,740 KB
testcase_42 AC 36 ms
52,896 KB
testcase_43 AC 36 ms
52,736 KB
testcase_44 AC 35 ms
53,236 KB
testcase_45 AC 34 ms
52,740 KB
testcase_46 AC 34 ms
53,660 KB
testcase_47 AC 52 ms
58,860 KB
testcase_48 AC 35 ms
51,756 KB
testcase_49 AC 40 ms
58,632 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-100,-1):
        if i==0:
            break
        cnt=0
        for j in range(1,m+1):
            cnt+=i%j
        ans=max(ans,cnt)
    print(ans)
0