結果

問題 No.2891 Mint
ユーザー miya145592miya145592
提出日時 2024-09-13 23:06:11
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 888 bytes
コンパイル時間 654 ms
コンパイル使用メモリ 81,956 KB
実行使用メモリ 135,936 KB
最終ジャッジ日時 2024-09-13 23:06:17
合計ジャッジ時間 5,947 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 41 ms
52,352 KB
testcase_02 AC 60 ms
57,984 KB
testcase_03 AC 39 ms
52,480 KB
testcase_04 AC 41 ms
51,328 KB
testcase_05 AC 39 ms
51,584 KB
testcase_06 AC 149 ms
135,936 KB
testcase_07 AC 39 ms
51,968 KB
testcase_08 AC 39 ms
51,712 KB
testcase_09 AC 40 ms
51,840 KB
testcase_10 AC 41 ms
52,352 KB
testcase_11 AC 39 ms
51,840 KB
testcase_12 AC 39 ms
52,352 KB
testcase_13 AC 40 ms
51,968 KB
testcase_14 AC 39 ms
52,224 KB
testcase_15 AC 39 ms
51,968 KB
testcase_16 AC 40 ms
51,840 KB
testcase_17 AC 102 ms
113,280 KB
testcase_18 AC 84 ms
92,928 KB
testcase_19 AC 81 ms
89,344 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 120 ms
127,104 KB
testcase_26 AC 117 ms
126,592 KB
testcase_27 AC 112 ms
119,552 KB
testcase_28 WA -
testcase_29 AC 87 ms
88,832 KB
testcase_30 WA -
testcase_31 AC 92 ms
92,672 KB
testcase_32 WA -
testcase_33 AC 97 ms
97,024 KB
testcase_34 AC 102 ms
101,888 KB
testcase_35 AC 109 ms
107,520 KB
testcase_36 WA -
testcase_37 AC 42 ms
51,840 KB
testcase_38 AC 42 ms
51,840 KB
testcase_39 AC 43 ms
51,840 KB
testcase_40 AC 43 ms
51,968 KB
testcase_41 AC 42 ms
51,968 KB
testcase_42 AC 42 ms
51,968 KB
testcase_43 AC 42 ms
51,584 KB
testcase_44 AC 43 ms
52,352 KB
testcase_45 AC 41 ms
51,840 KB
testcase_46 AC 41 ms
51,584 KB
testcase_47 AC 42 ms
51,328 KB
testcase_48 AC 42 ms
52,480 KB
testcase_49 AC 42 ms
51,840 KB
testcase_50 AC 41 ms
51,968 KB
testcase_51 AC 42 ms
52,096 KB
testcase_52 AC 42 ms
52,224 KB
testcase_53 AC 42 ms
52,352 KB
testcase_54 AC 42 ms
51,712 KB
testcase_55 AC 41 ms
51,840 KB
testcase_56 AC 42 ms
52,352 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)*cnt%MOD
        dp %= MOD
    print(dp)
0