結果

問題 No.3010 水色コーダーさん
ユーザー まぬお
提出日時 2025-01-25 12:34:09
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 580 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 67,768 KB
最終ジャッジ日時 2025-01-25 22:04:08
合計ジャッジ時間 3,112 ms
ジャッジサーバーID
(参考情報)
judge7 / judge8
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 3
other RE * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque, defaultdict, Counter
from bisect import bisect_left, bisect_right
from itertools import permutations, combinations
from functools import cache
from more_itertools import distinct_permutations
from heapq import heappop, heappush
import math
_int = lambda x: int(x)-1
MOD = 998244353
INF = 1<<60
Yes, No = "Yes", "No"

N, M = map(int, input().split())
ans = 0
for _ in range(N):
    s, r = input().split()
    r = int(r)
    if r >= 1200:
        for i in range(4):
            if s[i] == "x":
                ans += 1
                break
print(ans)
0