結果

問題 No.712 赤旗
ユーザー pypypymipypypymi
提出日時 2022-02-17 17:54:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 150 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 86,956 KB
実行使用メモリ 75,488 KB
最終ジャッジ日時 2023-09-11 17:46:18
合計ジャッジ時間 1,420 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
71,308 KB
testcase_01 AC 69 ms
71,136 KB
testcase_02 AC 69 ms
71,172 KB
testcase_03 AC 70 ms
71,172 KB
testcase_04 AC 77 ms
75,488 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