結果
問題 | No.2521 Don't be Same |
ユーザー | GOTKAKO |
提出日時 | 2023-10-27 23:55:31 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,276 bytes |
コンパイル時間 | 1,928 ms |
コンパイル使用メモリ | 200,576 KB |
実行使用メモリ | 25,520 KB |
平均クエリ数 | 2.86 |
最終ジャッジ日時 | 2024-09-25 15:38:10 |
合計ジャッジ時間 | 5,790 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 66 ms
25,196 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 65 ms
25,208 KB |
testcase_04 | AC | 64 ms
25,208 KB |
testcase_05 | WA | - |
testcase_06 | AC | 67 ms
25,220 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 63 ms
24,568 KB |
testcase_11 | AC | 63 ms
24,952 KB |
testcase_12 | AC | 64 ms
25,208 KB |
testcase_13 | AC | 63 ms
24,568 KB |
testcase_14 | AC | 64 ms
24,568 KB |
testcase_15 | AC | 66 ms
24,824 KB |
testcase_16 | AC | 64 ms
25,220 KB |
testcase_17 | AC | 64 ms
25,220 KB |
testcase_18 | AC | 65 ms
24,452 KB |
testcase_19 | AC | 63 ms
24,836 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 65 ms
25,208 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main(){ ios_base::sync_with_stdio(false); cin.tie(nullptr); int X,Y; cin >> X >> Y; if(abs(X-Y) != 1){ cout << "First" << endl; while(true){ if(X == Y) cout << "B" << endl; else if(Y == 0) cout << "A 1 " << X << endl; else if(X == 0) cout << "A 2 " << Y << endl; else if(X > Y){cout << "A 1 " << X-(Y+1) << endl; X -= X-(Y+1);} else{cout << "A 2 " << Y-(X+1) << endl; Y -= Y-(X+1);} char c; cin >> c; if(c == 'C' || c == 'D') return 0; int w,n; cin >> w >> n; if(w == 1) X -= n; else Y -= n; } } else{ cout << "Second" << endl; while(true){ char c; cin >> c; if(c == 'C' || c == 'D') return 0; int w,n; cin >> w >> n; if(w == 1) X -= n; else Y -= n; if(X == Y) cout << "B" << endl; else if(Y == 0) cout << "A 1 " << X << endl; else if(X == 0) cout << "A 2 " << Y << endl; else if(X > Y){cout << "A 1 " << X-(Y+1) << endl; X -= X-(Y+1);} else{cout << "A 2 " << Y-(X+1) << endl; Y -= Y-(X+1);} } } }