結果

問題 No.712 赤旗
ユーザー pypypymipypypymi
提出日時 2022-02-17 17:54:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 2,000 ms
コード長 150 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 58,568 KB
最終ジャッジ日時 2024-06-29 07:44:03
合計ジャッジ時間 799 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,744 KB
testcase_01 AC 33 ms
51,988 KB
testcase_02 AC 34 ms
52,908 KB
testcase_03 AC 33 ms
52,744 KB
testcase_04 AC 36 ms
58,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h,w = map(int,input().split())
count=0
for i in range(h):
    s = list(input())
    for si in s:
        if si!="R":
            count+=1
print(count)
0