結果

問題 No.3010 水色コーダーさん
ユーザー yuna
提出日時 2025-01-25 12:43:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 164 ms / 2,000 ms
コード長 135 bytes
コンパイル時間 596 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 76,536 KB
最終ジャッジ日時 2025-01-25 22:18:36
合計ジャッジ時間 4,725 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
c=0
for _ in range(n):
    a,b=input().split()
    if int(b)>=1200 and 'x' in a[:4]:
        c+=1
print(c)
0