結果
| 問題 | No.712 赤旗 |
| コンテスト | |
| ユーザー |
Maeda
|
| 提出日時 | 2025-03-11 11:12:05 |
| 言語 | C (gcc 13.3.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| コード長 | 309 bytes |
| コンパイル時間 | 319 ms |
| コンパイル使用メモリ | 24,832 KB |
| 実行使用メモリ | 7,328 KB |
| 最終ジャッジ日時 | 2025-03-11 11:12:06 |
| 合計ジャッジ時間 | 1,304 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 5 |
コンパイルメッセージ
main.c: In function ‘main’:
main.c:5:9: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
5 | scanf("%d %d",&n,&m);
| ^~~~~~~~~~~~~~~~~~~~
main.c:9:17: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
9 | scanf("%s",colorList);
| ^~~~~~~~~~~~~~~~~~~~~
ソースコード
#include <stdio.h>
int main(void){
int n,m;
scanf("%d %d",&n,&m);
char colorList[100] = "a";
int whiteCount = 0;
for(int i = 0 ; i < n;i++){
scanf("%s",colorList);
int j = 0;
while(colorList[j] != '\0'){
if(colorList[j] == 'W'){
whiteCount++;
}
j++;
}
}
printf("%d",whiteCount);
}
Maeda