結果
問題 | No.712 赤旗 |
ユーザー | yui556 |
提出日時 | 2018-08-24 16:52:53 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 137 ms / 2,000 ms |
コード長 | 380 bytes |
コンパイル時間 | 3,087 ms |
コンパイル使用メモリ | 74,388 KB |
実行使用メモリ | 54,552 KB |
最終ジャッジ日時 | 2024-06-22 13:54:28 |
合計ジャッジ時間 | 4,201 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 103 ms
52,832 KB |
testcase_01 | AC | 111 ms
54,028 KB |
testcase_02 | AC | 108 ms
52,896 KB |
testcase_03 | AC | 120 ms
53,892 KB |
testcase_04 | AC | 137 ms
54,552 KB |
ソースコード
import java.util.Scanner; public class No_712 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); final int N = sc.nextInt(); final int Y = sc.nextInt(); int count = 0; for(int i = 0 ; i < N ; i++) { String[] s = sc.next().split(""); for(String ss :s) { if("W".equals(ss)) count++; } } System.out.println(count); } }