結果

問題 No.3010 水色コーダーさん
ユーザー pluto77
提出日時 2025-01-28 16:32:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 201 ms / 2,000 ms
コード長 139 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 82,840 KB
実行使用メモリ 76,544 KB
最終ジャッジ日時 2025-01-28 16:32:15
合計ジャッジ時間 7,095 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

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