結果
| 問題 |
No.516 赤と青の風船
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2017-07-03 15:11:55 |
| 言語 | C90 (gcc 12.3.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| コード長 | 200 bytes |
| コンパイル時間 | 207 ms |
| コンパイル使用メモリ | 20,480 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-10-05 12:22:11 |
| 合計ジャッジ時間 | 697 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 6 |
コンパイルメッセージ
main.c: In function ‘main’:
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>b){printf("RED\n");}else{printf("BLUE\n");}
return 0;
}