結果

問題 No.2891 Mint
ユーザー miya145592miya145592
提出日時 2024-09-13 23:00:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 907 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 136,028 KB
最終ジャッジ日時 2024-09-13 23:01:03
合計ジャッジ時間 5,204 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,636 KB
testcase_01 AC 38 ms
53,548 KB
testcase_02 AC 60 ms
58,236 KB
testcase_03 AC 38 ms
52,648 KB
testcase_04 AC 38 ms
53,376 KB
testcase_05 AC 39 ms
53,068 KB
testcase_06 AC 116 ms
136,028 KB
testcase_07 AC 38 ms
52,708 KB
testcase_08 AC 38 ms
53,176 KB
testcase_09 AC 39 ms
52,556 KB
testcase_10 AC 38 ms
54,092 KB
testcase_11 AC 37 ms
52,552 KB
testcase_12 AC 38 ms
53,284 KB
testcase_13 AC 37 ms
52,332 KB
testcase_14 AC 37 ms
52,076 KB
testcase_15 AC 38 ms
52,516 KB
testcase_16 AC 38 ms
52,800 KB
testcase_17 AC 96 ms
113,528 KB
testcase_18 AC 78 ms
95,136 KB
testcase_19 AC 75 ms
89,396 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 108 ms
127,304 KB
testcase_26 AC 134 ms
128,088 KB
testcase_27 AC 103 ms
120,664 KB
testcase_28 WA -
testcase_29 AC 76 ms
90,744 KB
testcase_30 WA -
testcase_31 AC 80 ms
93,456 KB
testcase_32 WA -
testcase_33 AC 85 ms
98,264 KB
testcase_34 AC 87 ms
102,676 KB
testcase_35 AC 93 ms
108,344 KB
testcase_36 WA -
testcase_37 AC 37 ms
53,296 KB
testcase_38 AC 44 ms
52,284 KB
testcase_39 AC 38 ms
53,748 KB
testcase_40 AC 38 ms
51,868 KB
testcase_41 AC 38 ms
52,404 KB
testcase_42 AC 38 ms
53,052 KB
testcase_43 AC 38 ms
52,452 KB
testcase_44 AC 37 ms
52,348 KB
testcase_45 AC 38 ms
53,096 KB
testcase_46 AC 38 ms
52,584 KB
testcase_47 AC 38 ms
52,152 KB
testcase_48 AC 37 ms
52,880 KB
testcase_49 AC 38 ms
52,556 KB
testcase_50 AC 38 ms
52,832 KB
testcase_51 AC 37 ms
53,072 KB
testcase_52 AC 38 ms
53,352 KB
testcase_53 AC 38 ms
53,908 KB
testcase_54 AC 37 ms
53,276 KB
testcase_55 AC 37 ms
52,212 KB
testcase_56 AC 38 ms
52,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def isqrt(n):
    if n == 0: return 0
    x = 1 << (n.bit_length() + 1) // 2
    y = (x + n // x) // 2
    while y < x:
        x = y
        y = (x + n // x) // 2
    return x

import sys
input = sys.stdin.readline
MOD = 998244353
N, M = map(int, input().split())
dp = N*M%MOD
if N<=isqrt(M) or N<=10**6:
    for i in range(1, N+1):
        cnt = M//i
        dp -= i*cnt%MOD
        dp %= MOD
    print(dp)
else:
    dp = N*M%MOD
    tmp = []
    for i in range(1, isqrt(M)+1):
        cnt = M//i
        tmp.append(cnt)
        dp -= i*cnt%MOD
        dp %= MOD
    #print(tmp)
    for i in range(len(tmp)-1):
        cnt = min(tmp[i], N)-tmp[i+1]
        st = tmp[i+1]+1
        if cnt>0:
            dp -= (i+1)*((st+st+cnt-1)*cnt//2)%MOD
            dp %= MOD
    cnt = tmp[-1]-len(tmp)
    st = len(tmp)
    if cnt>0:
        dp -= len(tmp)*((st+st+cnt-1)*cnt//2)%MOD
        dp %= MOD
    print(dp)
0