結果

問題 No.3010 水色コーダーさん
ユーザー nasutarou1341
提出日時 2025-01-25 13:33:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 241 ms / 2,000 ms
コード長 176 bytes
コンパイル時間 431 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 108,276 KB
最終ジャッジ日時 2025-01-25 22:50:53
合計ジャッジ時間 6,160 ms
ジャッジサーバーID
(参考情報)
judge7 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = list(map(int, input().split()))
SR = [list(input().split()) for _ in range(N)]

ans = 0
for s, r in SR:
  if s[:4] != "oooo" and int(r) >= 1200:
    ans += 1

print(ans)
0