結果

問題 No.2891 Mint
ユーザー detteiuudetteiuu
提出日時 2024-09-13 23:04:16
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 493 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 62,424 KB
最終ジャッジ日時 2024-09-13 23:04:23
合計ジャッジ時間 5,631 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,004 KB
testcase_01 AC 37 ms
52,416 KB
testcase_02 AC 60 ms
58,296 KB
testcase_03 AC 37 ms
53,744 KB
testcase_04 AC 73 ms
59,144 KB
testcase_05 AC 59 ms
59,280 KB
testcase_06 WA -
testcase_07 AC 37 ms
52,064 KB
testcase_08 AC 38 ms
52,876 KB
testcase_09 AC 37 ms
52,004 KB
testcase_10 AC 38 ms
52,752 KB
testcase_11 AC 38 ms
52,464 KB
testcase_12 AC 38 ms
51,820 KB
testcase_13 AC 37 ms
52,372 KB
testcase_14 AC 38 ms
52,400 KB
testcase_15 AC 37 ms
53,688 KB
testcase_16 AC 39 ms
52,456 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 60 ms
58,460 KB
testcase_38 AC 57 ms
58,116 KB
testcase_39 AC 65 ms
59,256 KB
testcase_40 AC 67 ms
58,308 KB
testcase_41 AC 50 ms
57,972 KB
testcase_42 AC 61 ms
59,108 KB
testcase_43 AC 59 ms
58,332 KB
testcase_44 AC 60 ms
58,028 KB
testcase_45 AC 59 ms
59,368 KB
testcase_46 AC 59 ms
59,904 KB
testcase_47 AC 65 ms
59,924 KB
testcase_48 AC 62 ms
57,784 KB
testcase_49 AC 71 ms
58,328 KB
testcase_50 AC 44 ms
59,024 KB
testcase_51 AC 57 ms
59,720 KB
testcase_52 AC 44 ms
58,512 KB
testcase_53 AC 52 ms
57,844 KB
testcase_54 AC 55 ms
58,716 KB
testcase_55 AC 42 ms
58,248 KB
testcase_56 AC 71 ms
59,120 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 True:
    R = min(right, N)
    L = max(left, 10**6+1)
    if R-L+1 > 0:
        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