結果
問題 | No.197 手品 |
ユーザー | machy |
提出日時 | 2015-06-13 12:06:43 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,689 bytes |
コンパイル時間 | 688 ms |
コンパイル使用メモリ | 68,152 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-27 09:50:01 |
合計ジャッジ時間 | 1,745 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 1 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 1 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | AC | 2 ms
5,376 KB |
testcase_25 | AC | 2 ms
5,376 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 2 ms
5,376 KB |
testcase_29 | WA | - |
testcase_30 | AC | 1 ms
5,376 KB |
testcase_31 | AC | 2 ms
5,376 KB |
testcase_32 | AC | 1 ms
5,376 KB |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | AC | 1 ms
5,376 KB |
testcase_36 | AC | 1 ms
5,376 KB |
testcase_37 | AC | 1 ms
5,376 KB |
testcase_38 | AC | 1 ms
5,376 KB |
testcase_39 | WA | - |
testcase_40 | AC | 1 ms
5,376 KB |
testcase_41 | AC | 1 ms
5,376 KB |
testcase_42 | AC | 2 ms
5,376 KB |
testcase_43 | AC | 1 ms
5,376 KB |
testcase_44 | AC | 1 ms
5,376 KB |
testcase_45 | AC | 2 ms
5,376 KB |
testcase_46 | AC | 1 ms
5,376 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <iomanip> using namespace std; typedef long long LL; int main(){ string before, after; int N; cin >> before >> N >> after; int cnt_b = 0, cnt_a = 0; for(int i = 0; i < 3; i++) cnt_b += before[i]=='o'? 1: 0; for(int i = 0; i < 3; i++) cnt_a += after[i]=='o'? 1: 0; if(cnt_a != cnt_b){ cout << "SUCCESS" << endl; return 0; } if(cnt_a == 1){ if(before == after && N == 1){ cout << "FAILURE" << endl; } int pos_b = 0; int pos_a = 0; for(int i = 0; i < 3; i++){ if(before[i]=='o'){ pos_b = i; break; } } for(int i = 0; i < 3; i++){ if(after[i]=='o'){ pos_a = i; break; } } if(max(pos_a-pos_b, pos_b-pos_a) > N){ cout << "SUCCESS" << endl; }else{ cout << "FAILURE" << endl; } }else if(cnt_a == 2){ if(before == after && N == 1){ cout << "FAILURE" << endl; } int pos_b = 0; int pos_a = 0; for(int i = 0; i < 3; i++){ if(before[i]=='x'){ pos_b = i; break; } } for(int i = 0; i < 3; i++){ if(after[i]=='x'){ pos_a = i; break; } } if(max(pos_a-pos_b, pos_b-pos_a) > N){ cout << "SUCCESS" << endl; }else{ cout << "FAILURE" << endl; } }else{ cout << "FAILURE" << endl; } return 0; }