結果

問題 No.2891 Mint
ユーザー miya145592miya145592
提出日時 2024-09-13 23:09:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 909 bytes
コンパイル時間 588 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 136,936 KB
最終ジャッジ日時 2024-09-13 23:09:27
合計ジャッジ時間 5,211 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,928 KB
testcase_01 AC 39 ms
53,144 KB
testcase_02 AC 59 ms
58,016 KB
testcase_03 AC 37 ms
52,212 KB
testcase_04 AC 37 ms
52,140 KB
testcase_05 AC 37 ms
53,892 KB
testcase_06 AC 113 ms
136,936 KB
testcase_07 AC 38 ms
54,016 KB
testcase_08 AC 37 ms
53,976 KB
testcase_09 AC 36 ms
53,008 KB
testcase_10 AC 37 ms
52,736 KB
testcase_11 AC 37 ms
52,480 KB
testcase_12 AC 37 ms
54,204 KB
testcase_13 AC 39 ms
52,524 KB
testcase_14 AC 38 ms
53,668 KB
testcase_15 AC 36 ms
53,244 KB
testcase_16 AC 37 ms
52,576 KB
testcase_17 AC 96 ms
114,080 KB
testcase_18 AC 78 ms
93,084 KB
testcase_19 AC 74 ms
89,552 KB
testcase_20 AC 92 ms
108,472 KB
testcase_21 AC 74 ms
90,092 KB
testcase_22 AC 102 ms
121,068 KB
testcase_23 AC 66 ms
81,508 KB
testcase_24 AC 91 ms
108,788 KB
testcase_25 AC 104 ms
127,296 KB
testcase_26 AC 106 ms
127,488 KB
testcase_27 AC 101 ms
120,820 KB
testcase_28 AC 107 ms
128,612 KB
testcase_29 AC 75 ms
89,884 KB
testcase_30 AC 94 ms
113,768 KB
testcase_31 AC 77 ms
93,264 KB
testcase_32 AC 96 ms
113,820 KB
testcase_33 AC 83 ms
97,944 KB
testcase_34 AC 87 ms
102,852 KB
testcase_35 AC 92 ms
108,056 KB
testcase_36 AC 95 ms
113,280 KB
testcase_37 AC 37 ms
52,484 KB
testcase_38 AC 38 ms
52,400 KB
testcase_39 AC 38 ms
54,028 KB
testcase_40 AC 38 ms
53,032 KB
testcase_41 AC 37 ms
52,652 KB
testcase_42 AC 36 ms
54,148 KB
testcase_43 AC 37 ms
52,772 KB
testcase_44 AC 37 ms
52,576 KB
testcase_45 AC 37 ms
52,004 KB
testcase_46 AC 37 ms
52,556 KB
testcase_47 AC 37 ms
53,872 KB
testcase_48 AC 38 ms
51,936 KB
testcase_49 AC 37 ms
52,596 KB
testcase_50 AC 38 ms
52,504 KB
testcase_51 AC 37 ms
53,508 KB
testcase_52 AC 37 ms
53,364 KB
testcase_53 AC 37 ms
53,196 KB
testcase_54 AC 37 ms
52,592 KB
testcase_55 AC 37 ms
52,868 KB
testcase_56 AC 37 ms
52,676 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)+1
    if cnt>0:
        dp -= len(tmp)*((st+st+cnt-1)*cnt//2)%MOD
        dp %= MOD
    print(dp)
0