結果
問題 | No.2544 Many RMQ Problems |
ユーザー | tojac |
提出日時 | 2023-12-23 15:08:59 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 559 bytes |
コンパイル時間 | 2,394 ms |
コンパイル使用メモリ | 200,464 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-27 12:23:55 |
合計ジャッジ時間 | 5,368 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
ソースコード
// S2OJ Submission #12345 @ 1703311737931 #include <bits/stdc++.h> using namespace std; // int cnt[1024]; int main() { long long x, y; char c; cin >> x >> c >> y; long long g = __gcd(x, y); x /= g; y /= g; long long kmin = max(0LL, (2 * x - y) / (y * y)); long long kmax = (2 * x + y) / (y * y); if (kmax <= kmin) { cout << "Impossible\n"; } else { for (long long k = kmin + 1; k <= kmax; k++) { long long n = k * y; long long m = n * (n + 1) / 2 - k * x; cout << n << ' ' << m << '\n'; } } return 0; }