結果
| 問題 |
No.712 赤旗
|
| コンテスト | |
| ユーザー |
beeee_ambitious
|
| 提出日時 | 2018-07-17 18:06:05 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 27 ms / 2,000 ms |
| コード長 | 229 bytes |
| コンパイル時間 | 191 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 10,752 KB |
| 最終ジャッジ日時 | 2024-11-25 21:33:41 |
| 合計ジャッジ時間 | 822 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 5 |
ソースコード
rowandcolumn = input().split()
row = int(rowandcolumn[0])
column = int(rowandcolumn[1])
s = []
S = []
for i in range(row):
s.append(list(input()))
for j in range(column):
S.append(s[i][j])
print(S.count("W"))
beeee_ambitious