結果
問題 |
No.712 赤旗
|
ユーザー |
![]() |
提出日時 | 2018-07-22 20:12:43 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 30 ms / 2,000 ms |
コード長 | 258 bytes |
コンパイル時間 | 259 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,496 KB |
最終ジャッジ日時 | 2024-12-26 05:18:34 |
合計ジャッジ時間 | 1,000 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 5 |
ソースコード
Ndata = input(); NdataS = Ndata.split(" "); result = 0; gyoindex = int(NdataS[0]); retuindex = int(NdataS[1]); for gyo in range(0,gyoindex): gyono = input(); for retu in range(0,retuindex): if gyono[retu] == "W": result = result + 1; print(result);