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