結果
問題 | No.570 3人兄弟(その1) |
ユーザー | むうす |
提出日時 | 2023-01-15 13:25:51 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 1,063 bytes |
コンパイル時間 | 1,457 ms |
コンパイル使用メモリ | 165,324 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-08 16:38:58 |
合計ジャッジ時間 | 1,945 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 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 |
ソースコード
#include<bits/stdc++.h> using namespace std; #define lo long long #define sr string #define ch char #define ve vector #define al(x) x.begin(),x.end() #define sort(x) sort(x.begin(),x.end()) #define reverse(x) reverse(x.begin(),x.end()) #define rep(i,a) for(lo i=0;i<a;i++) #define lep(i,a) for(lo i=0;i<=a;i++) #define rrep(i,a,b) for(lo i=a;i<b;i++) #define rrrep(i,a,b) for(lo i=a;i>=b;i--) #define wh while int main(){ lo A,B,C; cin>>A>>B>>C; if(max(max(A,B),C)==A){ cout<<'A'<<endl; if(max(B,C)==B){ cout<<'B'<<endl<<'C'<<endl; } else{ cout<<'C'<<endl<<'B'<<endl; } } else if(max(max(A,B),C)==B){ cout<<'B'<<endl; if(max(A,C)==A){ cout<<'A'<<endl<<'C'<<endl; } else{ cout<<'C'<<endl<<'A'<<endl; } } else if(max(max(A,B),C)==C){ cout<<'C'<<endl; if(max(B,A)==B){ cout<<'B'<<endl<<'A'<<endl; } else{ cout<<'A'<<endl<<'B'<<endl; } } }