結果
問題 | No.571 3人兄弟(その2) |
ユーザー | ミドリムシ |
提出日時 | 2017-10-28 11:33:18 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,787 bytes |
コンパイル時間 | 651 ms |
コンパイル使用メモリ | 61,552 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-22 03:00:56 |
合計ジャッジ時間 | 1,188 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 2 ms
6,820 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
ソースコード
#include <iostream> #include <algorithm> using namespace std; int main(){ int H[3], W[3]; string alphabets[3] = {"A", "B", "C"}; for(int i = 0; i < 3; i++){ cin >> H[3] >> W[3]; } int H_tmp[3]; int W_tmp[3]; for(int i = 0; i < 3; i++){ H_tmp[i] = H[i]; W_tmp[i] = W[i]; } sort(H_tmp, H_tmp + 3); sort(W_tmp, W_tmp + 3); if(H_tmp[0] == H_tmp[1] && H_tmp[1] == H_tmp[2]){ for(int i = 0; i < 3; i++){ for(int j = 0; j < 3; j++){ if(W_tmp[i] == W[j]){ cout << alphabets[j] << endl; break; } } } }else if(H_tmp[0] == H_tmp[1]){ for(int i = 0; i < 2; i++){ for(int j = 0; j < 3; j++){ if(W_tmp[i] == W[j]){ cout << alphabets[j] << endl; break; } } } for(int i = 0; i < 3; i++){ if(W_tmp[2] == W[i]){ cout << alphabets[i] << endl; break; } } }else if(H_tmp[0] == H_tmp[1]){ for(int i = 0; i < 3; i++){ if(W_tmp[0] == W[i]){ cout << alphabets[i] << endl; break; } } for(int i = 1; i < 3; i++){ for(int j = 0; j < 3; j++){ if(W_tmp[i] == W[j]){ cout << alphabets[j] << endl; break; } } } }else{ for(int i = 0; i < 3; i++){ for(int j = 0; j < 3; j++){ if(H_tmp[i] == H[j]){ cout << alphabets[j] << endl; break; } } } } }