結果

問題 No.3010 水色コーダーさん
ユーザー さわーくりーむおにおん🧅
提出日時 2025-01-25 12:32:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 164 ms / 2,000 ms
コード長 648 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 82,776 KB
実行使用メモリ 77,204 KB
最終ジャッジ日時 2025-01-25 22:03:09
合計ジャッジ時間 4,400 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict, Counter, deque
from itertools import groupby, accumulate, combinations, permutations, product, combinations_with_replacement
from bisect import bisect_left, bisect_right
from operator import itemgetter
import math
from heapq import heapify, heappush, heappop

LMI=lambda:list(map(int, input().split()))
LMS=lambda:list(map(str, input().split()))
MI=lambda:map(int, input().split())
MS=lambda:map(str, input().split())
II=lambda:int(input())
IS=lambda:input().split()
LI=lambda:list(input())

N,M=MI()
ans=0

for i in range(N):
    S,R=MS()
    R=int(R)
    if R>=1200 and 'x' in S[:4]:
        ans+=1
print(ans)
0