結果

問題 No.495 (^^*) Easy
ユーザー RadPeriaRadPeria
提出日時 2017-12-04 17:25:13
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 646 bytes
コンパイル時間 109 ms
コンパイル使用メモリ 29,312 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-06 09:37:21
合計ジャッジ時間 1,016 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <stdio.h>
char S[3][4];

int main(){
        for(int i=0;i<3;i++){
                scanf("%s", S[i]);
        }
        int countR=0;
        int countB=0;
        for(int i=0;i<3;i++){
                for(int k=0;k<4;k++){
                        if(S[i][k]=='R'){
                                countR++;
                        }
                        if(S[i][k]=='B'){
                                countB++;
                        }
                }
        }
        if(countR>countB){
                printf("RED\n");
        }else{
                printf("BLUE\n");
        }
        return 0;
}
0