結果
問題 | No.570 3人兄弟(その1) |
ユーザー | aka_rice |
提出日時 | 2017-10-27 19:41:46 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 401 bytes |
コンパイル時間 | 1,760 ms |
コンパイル使用メモリ | 165,216 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-11-21 21:22:12 |
合計ジャッジ時間 | 2,073 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
ソースコード
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c; for(int i=0;i<3;i++){ scanf("%d%d%d",&a,&b,&c); } if (a > b && b > c) scanf("A\nB\nC\n"); if (a > c && c > b) scanf("A\nC\nB\n"); if (b > a && a > c) scanf("B\nA\nC\n"); if (b > c && c > a) scanf("B\nC\nA\n"); if (c > a && a > b) scanf("C\nA\nB\n"); if (c > b && b > a) scanf("C\nB\nA\n"); return 0; }