結果

問題 No.712 赤旗
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2019-02-19 17:32:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 482 bytes
コンパイル時間 2,014 ms
コンパイル使用メモリ 74,772 KB
実行使用メモリ 41,376 KB
最終ジャッジ日時 2024-10-12 10:20:52
合計ジャッジ時間 3,229 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
40,000 KB
testcase_01 AC 126 ms
41,068 KB
testcase_02 AC 122 ms
41,260 KB
testcase_03 AC 121 ms
41,084 KB
testcase_04 AC 124 ms
41,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int m = sc.nextInt();
        int ans = 0;
        for(int i=0; i<n; i++) {
            String tmp = sc.next();
            for(int j=0; j<tmp.length(); j++) {
                if(tmp.charAt(j) != 'R') {
                    ans++;
                }
            }
        }
        System.out.println(ans);
    }
}
0