結果

問題 No.2891 Mint
ユーザー detteiuudetteiuu
提出日時 2024-09-13 23:18:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 144 ms / 2,000 ms
コード長 573 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 75,264 KB
最終ジャッジ日時 2024-09-13 23:18:49
合計ジャッジ時間 5,722 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 41 ms
51,584 KB
testcase_02 AC 64 ms
57,344 KB
testcase_03 AC 41 ms
52,096 KB
testcase_04 AC 41 ms
51,712 KB
testcase_05 AC 65 ms
57,216 KB
testcase_06 AC 144 ms
75,264 KB
testcase_07 AC 40 ms
51,712 KB
testcase_08 AC 41 ms
51,840 KB
testcase_09 AC 40 ms
51,840 KB
testcase_10 AC 40 ms
51,456 KB
testcase_11 AC 41 ms
51,712 KB
testcase_12 AC 42 ms
51,840 KB
testcase_13 AC 41 ms
51,968 KB
testcase_14 AC 41 ms
51,840 KB
testcase_15 AC 41 ms
51,584 KB
testcase_16 AC 41 ms
51,840 KB
testcase_17 AC 110 ms
68,480 KB
testcase_18 AC 84 ms
62,592 KB
testcase_19 AC 81 ms
62,336 KB
testcase_20 AC 101 ms
66,944 KB
testcase_21 AC 80 ms
62,464 KB
testcase_22 AC 118 ms
70,528 KB
testcase_23 AC 77 ms
61,184 KB
testcase_24 AC 99 ms
66,944 KB
testcase_25 AC 126 ms
72,704 KB
testcase_26 AC 120 ms
71,296 KB
testcase_27 AC 119 ms
70,272 KB
testcase_28 AC 132 ms
73,216 KB
testcase_29 AC 81 ms
62,080 KB
testcase_30 AC 105 ms
67,200 KB
testcase_31 AC 82 ms
62,976 KB
testcase_32 AC 108 ms
69,120 KB
testcase_33 AC 89 ms
64,512 KB
testcase_34 AC 95 ms
65,408 KB
testcase_35 AC 103 ms
66,688 KB
testcase_36 AC 107 ms
67,840 KB
testcase_37 AC 41 ms
51,712 KB
testcase_38 AC 41 ms
51,840 KB
testcase_39 AC 40 ms
51,840 KB
testcase_40 AC 41 ms
51,584 KB
testcase_41 AC 41 ms
52,224 KB
testcase_42 AC 64 ms
57,216 KB
testcase_43 AC 62 ms
58,112 KB
testcase_44 AC 63 ms
57,344 KB
testcase_45 AC 63 ms
57,728 KB
testcase_46 AC 63 ms
57,984 KB
testcase_47 AC 40 ms
52,096 KB
testcase_48 AC 40 ms
51,584 KB
testcase_49 AC 40 ms
51,840 KB
testcase_50 AC 42 ms
51,840 KB
testcase_51 AC 41 ms
51,968 KB
testcase_52 AC 42 ms
51,456 KB
testcase_53 AC 42 ms
51,584 KB
testcase_54 AC 40 ms
51,968 KB
testcase_55 AC 41 ms
51,840 KB
testcase_56 AC 41 ms
51,968 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
if N <= 10**6:
    exit(print(ans))

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

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

print(ans)
0