結果
問題 | No.2103 ±1s Game |
ユーザー | shoshoshom |
提出日時 | 2022-10-21 22:23:02 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 824 bytes |
コンパイル時間 | 1,940 ms |
コンパイル使用メモリ | 200,596 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-01 06:56:04 |
合計ジャッジ時間 | 2,917 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
01_ | AC * 3 |
other | AC * 34 |
ソースコード
#include <bits/stdc++.h>#ifdef SHO_LOCAL#include "debug.h"#else#define debug(...) \{}#endifusing namespace std;void a() { cout << "Alice" << '\n'; }void b() { cout << "Bob" << '\n'; }int main() {iostream::sync_with_stdio(0), cin.tie(0), cout.tie(0);long long x, y, k, p;cin >> x >> y >> k >> p;long long t = x + y - k;bool one_way = x <= t / 2 || y <= t / 2;if (one_way) {if (x < y) {y -= t - x;x = 0;} else {x -= t - y;y = 0;}if (y == 0) {if (p == 1)a();elseb();} else {if ((p == 1 && (y % 2 == 0)) || (p == -1 && (y & 1)))a();elseb();}} else if (t & 1) {a();} else {b();}return 0;}