結果

問題 No.3010 水色コーダーさん
ユーザー Nagi
提出日時 2025-01-25 12:47:06
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 512 ms / 2,000 ms
コード長 218 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 11,904 KB
実行使用メモリ 10,240 KB
最終ジャッジ日時 2025-01-25 22:21:02
合計ジャッジ時間 10,194 ms
ジャッジサーバーID
(参考情報)
judge9 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
# s,r = [],[]
ans = 0
for _ in range(n):
    x,y=input().split()
    y = int(y)
    # print(x)
    check = x[:4].count('x') >= 1
    
    if y >= 1200 and check:
        ans += 1
print(ans)
0