結果

問題 No.2891 Mint
ユーザー detteiuudetteiuu
提出日時 2024-09-13 23:00:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 447 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 61,564 KB
最終ジャッジ日時 2024-09-13 23:00:58
合計ジャッジ時間 5,727 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,316 KB
testcase_01 AC 36 ms
53,532 KB
testcase_02 AC 60 ms
59,044 KB
testcase_03 AC 37 ms
52,980 KB
testcase_04 AC 69 ms
57,664 KB
testcase_05 AC 58 ms
59,272 KB
testcase_06 WA -
testcase_07 AC 37 ms
52,316 KB
testcase_08 AC 37 ms
52,368 KB
testcase_09 AC 38 ms
52,636 KB
testcase_10 AC 37 ms
53,956 KB
testcase_11 AC 36 ms
52,612 KB
testcase_12 AC 36 ms
53,180 KB
testcase_13 AC 37 ms
52,892 KB
testcase_14 AC 37 ms
53,960 KB
testcase_15 AC 36 ms
53,428 KB
testcase_16 AC 37 ms
53,356 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 58 ms
58,180 KB
testcase_38 AC 58 ms
58,372 KB
testcase_39 AC 64 ms
57,756 KB
testcase_40 AC 65 ms
57,964 KB
testcase_41 AC 48 ms
58,408 KB
testcase_42 AC 58 ms
58,736 KB
testcase_43 AC 59 ms
58,816 KB
testcase_44 AC 58 ms
58,728 KB
testcase_45 AC 59 ms
58,592 KB
testcase_46 AC 58 ms
58,780 KB
testcase_47 AC 61 ms
58,668 KB
testcase_48 AC 61 ms
59,740 KB
testcase_49 AC 68 ms
58,108 KB
testcase_50 AC 43 ms
59,036 KB
testcase_51 AC 57 ms
58,808 KB
testcase_52 AC 43 ms
58,060 KB
testcase_53 AC 49 ms
58,104 KB
testcase_54 AC 54 ms
58,388 KB
testcase_55 AC 41 ms
58,700 KB
testcase_56 AC 71 ms
59,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

MOD = 998244353
ans = M*N%MOD
for i in range(1, min(N+1, 10**6+1)):
    ans -= M
    ans %= MOD
    ans += M%i
    ans %= MOD

def SUM(left, right, cnt):
    return (left+right)*cnt//2%MOD

right = M
left = M//2+1
cnt = 1
while left > 10**6:
    R = min(right, N)
    if R-left+1 > 0:
        ans -= SUM(M%R, M%left, R-left+1)
        ans %= MOD
    cnt += 1
    right = M//cnt
    left = M//(cnt+1)+1

print(ans)
0