結果

問題 No.570 3人兄弟(その1)
ユーザー Kainogi_Kainogi_
提出日時 2017-10-27 07:26:24
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 376 bytes
コンパイル時間 399 ms
コンパイル使用メモリ 56,060 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-01 15:37:11
合計ジャッジ時間 823 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
struct P{char suit;int value;};
int main(void){
    struct P p[4];
    int i;
    p[0].suit='A',p[1].suit='B',p[2].suit='C';
    for(i=0;i<3;i++){
        cin>>p[i].value;
    }
    for(i=0;i<2;i++){
        if(p[i].value<p[i+1].value)swap(p[i],p[i+1]);
    }
    for(i=0;i<3;i++){
        cout<<p[i].suit<<endl;
    }
    return 0;
}
0