結果
| 問題 |
No.516 赤と青の風船
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-07-03 15:11:05 |
| 言語 | C90 (gcc 12.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 200 bytes |
| コンパイル時間 | 167 ms |
| コンパイル使用メモリ | 20,608 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-10-05 12:22:03 |
| 合計ジャッジ時間 | 846 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 WA * 1 |
| other | AC * 3 WA * 3 |
コンパイルメッセージ
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);
| ^~~~~~~~~~~~~
ソースコード
#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;
}