結果

問題 No.1186 長方形の敷き詰め
ユーザー buey_tbuey_t
提出日時 2023-05-07 09:53:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,007 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 90,048 KB
最終ジャッジ日時 2024-05-03 11:43:52
合計ジャッジ時間 4,925 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
85,276 KB
testcase_01 AC 122 ms
85,260 KB
testcase_02 AC 120 ms
85,192 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 120 ms
85,228 KB
testcase_06 AC 120 ms
85,248 KB
testcase_07 AC 120 ms
85,312 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 118 ms
85,204 KB
testcase_12 AC 117 ms
85,208 KB
testcase_13 AC 121 ms
85,208 KB
testcase_14 AC 121 ms
85,192 KB
testcase_15 AC 118 ms
85,260 KB
testcase_16 AC 121 ms
85,356 KB
testcase_17 AC 117 ms
85,120 KB
testcase_18 AC 118 ms
85,260 KB
testcase_19 AC 123 ms
85,404 KB
testcase_20 AC 127 ms
85,488 KB
testcase_21 AC 126 ms
85,444 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 120 ms
85,188 KB
testcase_25 AC 121 ms
85,188 KB
testcase_26 AC 120 ms
85,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt,sin,cos,tan,ceil,radians,floor,gcd,exp,log,log10,log2,factorial,fsum
from heapq import heapify, heappop, heappush
from bisect import bisect_left, bisect_right
from copy import deepcopy
import copy
import random
from random import randrange
from collections import deque,Counter,defaultdict
from itertools import permutations,combinations
from decimal import Decimal,ROUND_HALF_UP
#tmp = Decimal(mid).quantize(Decimal('0'), rounding=ROUND_HALF_UP)
from functools import lru_cache, reduce
#@lru_cache(maxsize=None)
from operator import add,sub,mul,xor,and_,or_,itemgetter
import sys
input = sys.stdin.readline
# .rstrip()
INF = 10**18
mod1 = 10**9+7
mod2 = 998244353

#DecimalならPython
#再帰ならPython!!!!!!!!!!!!!!!!!!!!!!!!!!


'''
縦にNってのがでかいな
MをNで何回割れるか的な
Mは小さかった

'''

N,M = map(int, input().split())

now = N
ans = 1
while now <= M:
    ans += 1 + (M-now)
    now += N
    ans %= mod2

print(ans)


























0