結果
問題 | No.712 赤旗 |
ユーザー |
![]() |
提出日時 | 2018-07-13 22:23:36 |
言語 | C90 (gcc 12.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 2,000 ms |
コード長 | 448 bytes |
コンパイル時間 | 162 ms |
コンパイル使用メモリ | 23,040 KB |
実行使用メモリ | 6,816 KB |
最終ジャッジ日時 | 2024-10-09 05:13:39 |
合計ジャッジ時間 | 581 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 5 |
コンパイルメッセージ
main.c: In function ‘run’: main.c:13:3: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 13 | scanf("%d%d",&n,&m); | ^~~~~~~~~~~~~~~~~~~ main.c:18:5: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 18 | scanf("%s",s); | ^~~~~~~~~~~~~
ソースコード
#include<stdio.h>#include<stdlib.h>#include<math.h>typedef long long int int64;#define MAX(a,b) ((a)>(b)?(a):(b))#define MIN(a,b) ((a)<(b)?(a):(b))#define ABS(a) ((a)>(0)?(a):-(a))void run(void){int n,m;scanf("%d%d",&n,&m);char s[51];int cnt=0;int i;for(i=0;i<n;i++){scanf("%s",s);int j;for(j=0;j<m;j++){if(s[j]!='R') cnt++;}}printf("%d\n",cnt);}int main(void){run();return 0;}