結果
| 問題 | No.3498 Modulo Equation |
| コンテスト | |
| ユーザー |
KowerKoint2010
|
| 提出日時 | 2026-04-17 20:18:23 |
| 言語 | C++23 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 580 bytes |
| 記録 | |
| コンパイル時間 | 3,658 ms |
| コンパイル使用メモリ | 328,344 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-04-17 20:18:36 |
| 合計ジャッジ時間 | 3,385 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 30 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const ll INF = 1ll << 60;
#define REP(i, n) for(ll i =0; i < ll(n); i++)
template <class T> using V = vector<T>;
template <class A, class B>
bool chmax(A& a, B b) { return a<b && (a=b, true); }
template <class A, class B>
bool chmin(A& a, B b) { return b<a && (a=b, true); }
void testcase() {
int a, b; cin >> a >> b;
for(int x = 1; x <= 100000; x++) {
if(x % a == b % x) {
cout << x << '\n';
return;
}
}
assert(0);
}
int main() {
cin.tie(0)->sync_with_stdio(0);
testcase();
}
KowerKoint2010