結果
| 問題 | No.712 赤旗 |
| コンテスト | |
| ユーザー |
senshi2000
|
| 提出日時 | 2018-07-16 00:03:13 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 31 ms / 2,000 ms |
| コード長 | 553 bytes |
| コンパイル時間 | 106 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 10,880 KB |
| 最終ジャッジ日時 | 2024-11-07 16:22:45 |
| 合計ジャッジ時間 | 820 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 5 |
ソースコード
def getinputdata():
array_result = []
data = input()
# 配列初期化
array_result.append(data.split(" "))
flg = 1
try:
while flg:
data = input()
if(data != ""):
array_result.append(data.split(" "))
else:
flg = 0
finally:
return array_result
arr_data = getinputdata()
n=int(arr_data[0][0])
m=int(arr_data[0][1])
cnt=0
for i in range(1,1+n):
cnt+=arr_data[i][0].count("W")
print(cnt)
senshi2000