結果
| 問題 | No.3010 水色コーダーさん | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2025-01-30 00:05:47 | 
| 言語 | PyPy3 (7.3.15) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 216 ms / 2,000 ms | 
| コード長 | 232 bytes | 
| コンパイル時間 | 198 ms | 
| コンパイル使用メモリ | 82,448 KB | 
| 実行使用メモリ | 78,424 KB | 
| 最終ジャッジ日時 | 2025-01-30 00:05:53 | 
| 合計ジャッジ時間 | 5,445 ms | 
| ジャッジサーバーID (参考情報) | judge1 / judge4 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 20 | 
ソースコード
N,M = map(int,input().split())
ans = 0
for _ in range(N):
    S,R = input().split()
    R = int(R)
    if  not R >= 1200:
        continue
    for s in S[:4]:
        if s == "x":
            ans += 1
            break
print(ans)
            
            
            
        