結果

問題 No.2891 Mint
ユーザー mattu34mattu34
提出日時 2024-09-25 21:30:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 234 ms / 2,000 ms
コード長 2,652 bytes
コンパイル時間 340 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 89,688 KB
最終ジャッジ日時 2024-09-25 21:30:26
合計ジャッジ時間 13,125 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 164 ms
88,852 KB
testcase_01 AC 163 ms
88,812 KB
testcase_02 AC 160 ms
88,756 KB
testcase_03 AC 160 ms
88,792 KB
testcase_04 AC 195 ms
89,136 KB
testcase_05 AC 177 ms
88,884 KB
testcase_06 AC 232 ms
89,456 KB
testcase_07 AC 166 ms
89,088 KB
testcase_08 AC 163 ms
88,880 KB
testcase_09 AC 163 ms
88,844 KB
testcase_10 AC 162 ms
88,960 KB
testcase_11 AC 163 ms
89,092 KB
testcase_12 AC 168 ms
88,880 KB
testcase_13 AC 162 ms
89,088 KB
testcase_14 AC 160 ms
88,944 KB
testcase_15 AC 161 ms
88,956 KB
testcase_16 AC 161 ms
88,932 KB
testcase_17 AC 212 ms
89,480 KB
testcase_18 AC 196 ms
89,600 KB
testcase_19 AC 195 ms
89,452 KB
testcase_20 AC 210 ms
89,268 KB
testcase_21 AC 190 ms
89,372 KB
testcase_22 AC 218 ms
89,376 KB
testcase_23 AC 188 ms
89,476 KB
testcase_24 AC 229 ms
89,408 KB
testcase_25 AC 222 ms
89,384 KB
testcase_26 AC 222 ms
89,516 KB
testcase_27 AC 223 ms
89,456 KB
testcase_28 AC 224 ms
89,600 KB
testcase_29 AC 195 ms
89,600 KB
testcase_30 AC 212 ms
89,600 KB
testcase_31 AC 196 ms
89,568 KB
testcase_32 AC 215 ms
89,384 KB
testcase_33 AC 206 ms
89,244 KB
testcase_34 AC 202 ms
89,600 KB
testcase_35 AC 234 ms
89,388 KB
testcase_36 AC 209 ms
89,568 KB
testcase_37 AC 188 ms
89,120 KB
testcase_38 AC 186 ms
89,344 KB
testcase_39 AC 186 ms
89,192 KB
testcase_40 AC 196 ms
89,592 KB
testcase_41 AC 178 ms
89,444 KB
testcase_42 AC 165 ms
89,000 KB
testcase_43 AC 166 ms
88,816 KB
testcase_44 AC 164 ms
88,960 KB
testcase_45 AC 164 ms
89,088 KB
testcase_46 AC 163 ms
88,936 KB
testcase_47 AC 220 ms
89,304 KB
testcase_48 AC 193 ms
89,308 KB
testcase_49 AC 197 ms
89,428 KB
testcase_50 AC 177 ms
89,144 KB
testcase_51 AC 192 ms
89,256 KB
testcase_52 AC 178 ms
89,352 KB
testcase_53 AC 217 ms
89,600 KB
testcase_54 AC 185 ms
89,344 KB
testcase_55 AC 160 ms
89,688 KB
testcase_56 AC 174 ms
89,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
import sys
import heapq
from heapq import heapify, heappop, heappush
import bisect
from bisect import bisect_left, bisect_right
import itertools
from functools import lru_cache
from types import GeneratorType
from fractions import Fraction
import math
import copy
import random

# import numpy as np

# sys.setrecursionlimit(int(1e7))
# @lru_cache(maxsize=None) # CPython特化
# @bootstrap # PyPy特化(こっちのほうが速い) yield dfs(), yield Noneを忘れずに


def bootstrap(f, stack=[]):  # yield
    def wrappedfunc(*args, **kwargs):
        if stack:
            return f(*args, **kwargs)
        else:
            to = f(*args, **kwargs)
            while True:
                if type(to) is GeneratorType:
                    stack.append(to)
                    to = next(to)
                else:
                    stack.pop()
                    if not stack:
                        break
                    to = stack[-1].send(to)
            return to

    return wrappedfunc


dxdy1 = ((0, 1), (0, -1), (1, 0), (-1, 0))  # 上下右左
dxdy2 = (
    (0, 1),
    (0, -1),
    (1, 0),
    (-1, 0),
    (1, 1),
    (-1, -1),
    (1, -1),
    (-1, 1),
)  # 8方向すべて
dxdy3 = ((0, 1), (1, 0))  # 右 or 下
dxdy4 = ((1, 1), (1, -1), (-1, 1), (-1, -1))  # 斜め
INF = float("inf")
_INF = 1 << 60
MOD = 998244353
mod = 998244353
MOD2 = 10**9 + 7
mod2 = 10**9 + 7
# memo : len([a,b,...,z])==26
# memo : 2^20 >= 10^6
# 小数の計算を避ける : x/y -> (x*big)//y  ex:big=10**9
# @:小さい文字, ~:大きい文字,None: 空の文字列
# ユークリッドの互除法:gcd(x,y)=gcd(x,y-x)
# memo : d 桁以下の p 進表記を用いると p^d-1 以下のすべての
#        非負整数を表現することができる
# memo : (X,Y) -> (X+Y,X−Y) <=> 点を原点を中心に45度回転し、√2倍に拡大
# memo : (x,y)のx正から見た偏角をラジアンで(-πからπ]: math.atan2(y, x)
# memo : a < bのとき ⌊a⌋ ≦ ⌊b⌋

input = lambda: sys.stdin.readline().rstrip()
mi = lambda: map(int, input().split())
li = lambda: list(mi())
ii = lambda: int(input())
py = lambda: print("Yes")
pn = lambda: print("No")
pf = lambda: print("First")
ps = lambda: print("Second")


N, M = mi()
K = int(M**0.5)
ans = 0
for k in range(1, min(K + 1, N + 1)):
    ans += M % k
    ans %= MOD
for d in range(M // K + 1):
    a = max(K + 1, M // (d + 1) + 1)
    if d != 0:
        b = min(N, M // d)
    else:
        b = N
    if a > b:
        continue
    tmp = b * (b + 1) // 2 - (a - 1) * a // 2
    tmp %= MOD
    ans += M * (b - a + 1) - d * tmp
    ans %= MOD
print(ans)
0