結果

問題 No.2128 Round up!!
ユーザー ニックネームニックネーム
提出日時 2022-11-19 00:15:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 556 ms / 2,000 ms
コード長 316 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-09-20 04:35:23
合計ジャッジ時間 6,479 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 394 ms
10,880 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 436 ms
10,752 KB
testcase_04 AC 442 ms
10,880 KB
testcase_05 AC 468 ms
10,752 KB
testcase_06 AC 556 ms
10,752 KB
testcase_07 AC 514 ms
10,624 KB
testcase_08 AC 515 ms
10,752 KB
testcase_09 AC 416 ms
10,752 KB
testcase_10 AC 454 ms
10,752 KB
testcase_11 AC 452 ms
10,752 KB
testcase_12 AC 483 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
for _ in range(int(input())):
    x, a, b = map(int, input().split())
    if a > b: a, b = b, a
    m = a*b//gcd(a, b)
    n = (x-1+m)//m*m
    c = (x-1+a)//a*a
    d = (x-1+b)//b*b
    if x == d: ans = 1
    elif x == c or d <= c: ans = 2
    else: ans = 3
    print((ans+(n-d)//b*2)%998244353)
0