結果

問題 No.3010 水色コーダーさん
ユーザー sasa8uyauya
提出日時 2025-01-25 12:31:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 162 ms / 2,000 ms
コード長 125 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 82,504 KB
実行使用メモリ 76,580 KB
最終ジャッジ日時 2025-01-25 22:02:37
合計ジャッジ時間 4,403 ms
ジャッジサーバーID
(参考情報)
judge2 / judge9
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

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