結果

問題 No.712 赤旗
ユーザー tsunabittsunabit
提出日時 2018-07-29 14:36:43
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 421 bytes
コンパイル時間 3,484 ms
コンパイル使用メモリ 75,620 KB
実行使用メモリ 54,236 KB
最終ジャッジ日時 2024-07-17 21:43:01
合計ジャッジ時間 4,193 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
54,140 KB
testcase_01 AC 112 ms
53,968 KB
testcase_02 AC 113 ms
54,004 KB
testcase_03 AC 116 ms
54,236 KB
testcase_04 AC 121 ms
54,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.stream.Stream;
import java.time.*;
import java.time.format.*;

public class No712 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
        int m = sc.nextInt();
        int t = 0;
        for(int i = 0; i < n; i++) {
            t += sc.next().replace("R" , "").length();
        }
        System.out.println(t);
	}
}
0