結果

問題 No.3010 水色コーダーさん
ユーザー ナナフシモドキ
提出日時 2025-01-25 12:33:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 200 ms / 2,000 ms
コード長 269 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 82,916 KB
実行使用メモリ 76,800 KB
最終ジャッジ日時 2025-01-25 22:16:41
合計ジャッジ時間 4,833 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

N , M = map( int , input().split() )

res = 0

for i in range(N) :
    S = list( map( str , input().split() ) )
    if int( S[1] ) >= 1200 :
        L = list(S[0])
        if L[0] == "x" or L[1] == "x" or L[2] == "x" or L[3] == "x" :
            res += 1

print( res ) 
0