結果

問題 No.2128 Round up!!
ユーザー hiro1729hiro1729
提出日時 2024-08-11 16:55:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 354 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 78,612 KB
最終ジャッジ日時 2024-08-11 16:55:10
合計ジャッジ時間 4,602 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,224 KB
testcase_01 AC 237 ms
77,404 KB
testcase_02 WA -
testcase_03 AC 217 ms
77,440 KB
testcase_04 AC 193 ms
76,484 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 175 ms
76,800 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd

mod = 998244353

for _ in range(int(input())):
	X, A, B = map(int, input().split())
	A, B = min(A, B), max(A, B)
	G = gcd(A, B)
	L = A * B // G
	mx = (X + L - 1) // L * L
	ca = (X + A - 1) // A * A
	cb = (X + B - 1) // B * B
	ans = 1
	if X != cb:
		ans += 1
	if X != ca and ca < cb:
		ans += 1
	ans += (mx - cb) // B * 2
	print(ans)
0