結果

問題 No.2128 Round up!!
ユーザー kotatsugamekotatsugame
提出日時 2022-11-18 22:18:19
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 238 ms / 2,000 ms
コード長 582 bytes
コンパイル時間 531 ms
コンパイル使用メモリ 66,756 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-20 02:39:30
合計ジャッジ時間 3,176 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 97 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 107 ms
6,940 KB
testcase_04 AC 119 ms
6,944 KB
testcase_05 AC 145 ms
6,944 KB
testcase_06 AC 238 ms
6,940 KB
testcase_07 AC 180 ms
6,940 KB
testcase_08 AC 193 ms
6,940 KB
testcase_09 AC 108 ms
6,944 KB
testcase_10 AC 167 ms
6,944 KB
testcase_11 AC 157 ms
6,944 KB
testcase_12 AC 179 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:15:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   15 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<atcoder/modint>
using namespace std;
using mint=atcoder::modint998244353;
long gcd(long a,long b)
{
	while(b)
	{
		long t=a%b;
		a=b;
		b=t;
	}
	return a;
}
main()
{
	int T;cin>>T;
	for(;T--;)
	{
		long X,A,B;
		cin>>X>>A>>B;
		if(A==B)
		{
			if(X%A==0)cout<<"1\n";
			else cout<<"2\n";
			continue;
		}
		if(A>B)swap(A,B);
		mint ans=1;
		if(X%A!=0&&X%B!=0)
		{
			ans++;
			X=min((X+A-1)/A*A,(X+B-1)/B*B);
		}
		if(X%B!=0)
		{
			ans++;
			X=(X+B-1)/B*B;
		}
		long k=X/B;
		long t=A/gcd(A,B);
		ans+=(-k%t+t)%t*mint(2);
		cout<<ans.val()<<"\n";
	}
}
0