結果

問題 No.2128 Round up!!
ユーザー otoshigootoshigo
提出日時 2022-11-19 16:45:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 575 ms / 2,000 ms
コード長 429 bytes
コンパイル時間 121 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-09-20 16:29:47
合計ジャッジ時間 6,526 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,880 KB
testcase_01 AC 403 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 425 ms
10,752 KB
testcase_04 AC 437 ms
10,752 KB
testcase_05 AC 505 ms
10,752 KB
testcase_06 AC 575 ms
10,752 KB
testcase_07 AC 537 ms
10,752 KB
testcase_08 AC 525 ms
10,880 KB
testcase_09 AC 425 ms
10,752 KB
testcase_10 AC 481 ms
10,752 KB
testcase_11 AC 488 ms
10,752 KB
testcase_12 AC 487 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
t=int(input())
for _ in range(t):
    x,a,b=map(int,input().split())
    if a==b:
        if x%a==0:
            print(1)
        else:
            print(2)
        continue
    if a<b:
        a,b=b,a
    l=a*b//math.gcd(a,b)
    y=((x+l-1)//l)*l
    ans=2*(y//a-(x-1)//a)-1
    if x%a>0 and x%b>0:
        ans+=1
    z=((x+a-1)//a)*a
    w=((x+b-1)//b)*b
    if z!=w and w<z:
        ans+=1
    print(ans%998244353)
0