結果

問題 No.516 赤と青の風船
ユーザー butsurizukibutsurizuki
提出日時 2017-07-03 15:11:05
言語 C90
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 200 bytes
コンパイル時間 129 ms
コンパイル使用メモリ 20,864 KB
実行使用メモリ 6,940 KB
最終ジャッジ日時 2024-04-15 14:36:02
合計ジャッジ時間 644 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 WA -
testcase_05 AC 0 ms
5,376 KB
testcase_06 WA -
testcase_07 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:9:13: warning: comparison between pointer and integer
    9 |         if(r>s){printf("RED\n");}else{printf("BLUE\n");}
      |             ^
main.c:6:17: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    6 |                 scanf("%s",s);
      |                 ^~~~~~~~~~~~~

ソースコード

diff #

#include<stdio.h>
int main(void){
	int i,r=0,b=0;
	char s[8];
	for(i = 1;i <= 3;i++){
		scanf("%s",s);
		if(s[0]=='R'){r++;}else{b++;}
	}
	if(r>s){printf("RED\n");}else{printf("BLUE\n");}
	return 0;
}
0