結果

問題 No.712 赤旗
ユーザー Pump0129Pump0129
提出日時 2018-11-28 00:50:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 578 bytes
コンパイル時間 2,447 ms
コンパイル使用メモリ 74,836 KB
実行使用メモリ 41,720 KB
最終ジャッジ日時 2024-06-24 21:48:20
合計ジャッジ時間 3,308 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
40,356 KB
testcase_01 AC 125 ms
41,040 KB
testcase_02 AC 110 ms
40,012 KB
testcase_03 AC 128 ms
41,296 KB
testcase_04 AC 133 ms
41,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package net.ipipip0129.yukicoder.No712;

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        int height = scan.nextInt();
        int width = scan.nextInt();

        int ans_cnt = 0;

        scan.nextLine();

        for (int i = 0; i < height; i++) {
            String line = scan.nextLine();
            for (char s : line.toCharArray()) {
                if (s == 'W') ans_cnt += 1;
            }
        }

        System.out.println(ans_cnt);
    }
}
0