結果

問題 No.712 赤旗
ユーザー 37zigen37zigen
提出日時 2018-07-13 22:38:47
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 388 bytes
コンパイル時間 3,716 ms
コンパイル使用メモリ 74,616 KB
実行使用メモリ 55,788 KB
最終ジャッジ日時 2024-10-09 05:19:59
合計ジャッジ時間 3,287 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
53,916 KB
testcase_01 AC 131 ms
54,308 KB
testcase_02 AC 132 ms
53,872 KB
testcase_03 AC 134 ms
53,764 KB
testcase_04 AC 140 ms
55,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main {
	public static void main(String[] args) {
		new Main().run();
	}

	void run() {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		int M = sc.nextInt();
		int ans = 0;
		for (int i = 0; i < N; ++i) {
			char[] c = sc.next().toCharArray();
			for (char cs : c) {
				if (cs == 'W')
					++ans;
			}
		}
		System.out.println(ans);
	}

}
0