結果

問題 No.3010 水色コーダーさん
ユーザー Facade
提出日時 2025-01-25 13:54:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 167 ms / 2,000 ms
コード長 150 bytes
コンパイル時間 385 ms
コンパイル使用メモリ 82,648 KB
実行使用メモリ 76,664 KB
最終ジャッジ日時 2025-01-25 23:02:27
合計ジャッジ時間 4,926 ms
ジャッジサーバーID
(参考情報)
judge10 / judge7
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
cnt=0
for _ in range(n):
    s,r=input().split()
    r=int(r)
    if "x" in s[:4] and r>=1200:
        cnt+=1
print(cnt)
0