結果

問題 No.712 赤旗
ユーザー yukiyuki
提出日時 2020-08-20 15:54:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 165 ms / 2,000 ms
コード長 604 bytes
コンパイル時間 2,368 ms
コンパイル使用メモリ 76,340 KB
実行使用メモリ 54,060 KB
最終ジャッジ日時 2024-10-13 12:05:22
合計ジャッジ時間 3,556 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
54,012 KB
testcase_01 AC 133 ms
54,040 KB
testcase_02 AC 137 ms
53,768 KB
testcase_03 AC 134 ms
54,060 KB
testcase_04 AC 165 ms
53,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner in = new Scanner(System.in);
        int N = in.nextInt();
        int M = in.nextInt();
        final int total = N * M;
        int count = 0;

        for(int i=0; i<=N; i++){
            String L = in.nextLine();
            String[] arr = L.split("");
            for(int j=0; j<arr.length; j++){
                if(arr[j].equals("R")){
                    count++;                    
                }
            }
        }
        System.out.println(total - count);

    }
}
0