結果

問題 No.3010 水色コーダーさん
ユーザー hato336
提出日時 2025-01-25 12:31:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 276 ms / 2,000 ms
コード長 552 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 81,736 KB
実行使用メモリ 91,140 KB
最終ジャッジ日時 2025-01-25 22:02:56
合計ジャッジ時間 6,723 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections,sys,math,functools,operator,itertools,bisect,heapq,decimal,string,time,random
#sys.setrecursionlimit(10**9)
#sys.set_int_max_str_digits(0)
#input = sys.stdin.readline

#alist = list(map(int,input().split()))
#alist = []
#s = input()
n,m = map(int,input().split())
#for i in range(n):
#    alist.append(list(map(int,input().split())))

ans = 0
for i in range(n):
    s,r = input().split()
    r = int(r)
    if r >= 1200:
        for j in range(4):
            if s[j] == 'x':
                ans += 1
                break
print(ans)
0