結果
問題 | No.2128 Round up!! |
ユーザー | 👑 AngrySadEight |
提出日時 | 2022-10-31 00:05:19 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,683 bytes |
コンパイル時間 | 634 ms |
コンパイル使用メモリ | 73,072 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-17 07:10:07 |
合計ジャッジ時間 | 3,579 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 130 ms
6,940 KB |
testcase_06 | AC | 211 ms
6,944 KB |
testcase_07 | AC | 171 ms
6,940 KB |
testcase_08 | AC | 178 ms
6,944 KB |
testcase_09 | WA | - |
testcase_10 | AC | 146 ms
6,940 KB |
testcase_11 | AC | 145 ms
6,944 KB |
testcase_12 | AC | 162 ms
6,940 KB |
ソースコード
#include <iostream> #include <algorithm> using namespace std; typedef long long ll; ll my_gcd(ll x, ll y){ ll ret; if (x < y){ swap(x, y); } if (y == 0){ ret = x; } else{ ret = my_gcd(y, x % y); } return ret; } int main(){ ll mod = 998244353; int T; cin >> T; while(T--){ ll X, A, B; cin >> X >> A >> B; if (A > B) swap(A, B); if (A == B){ if (X % B == 0) cout << 1 << endl; else cout << 2 << endl; } else{ //最後に行った操作を操作Bにそろえてから考える ll XA = ((X + A - 1) / A) * A; ll XB = ((X + B - 1) / B) * B; ll XAB = ((XA + B - 1) / B) * B; //cout << XA << " " << XB << " " << XAB << endl; ll cnt; if (XA == XB){ if (X == XA) cout << 1 << endl; else cout << 2 << endl; continue; } else if (XA < XB){ // X -> XB -> XA -> XAB if (X == XA) cnt = 2; else cnt = 3; X = XAB; } else{ // X -> XB if (X == XB) cnt = 1; else cnt = 2; X = XB; } if (B % A == 0){ cout << cnt << endl; continue; } ll g = my_gcd(A, B); //あと何回操作を行えるか? ll lim = A / g; ll now = X / B; ll ans = (lim - now) * 2 + cnt; cout << ans % mod << endl; } } }