結果

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

ソースコード

diff #

N, M = map(int, input().split())
count = 0

for _ in range(N):
	S, R = input().split()
	R = int(R)
	
	if R >= 1200 and 'x' in S[:4]:
		count += 1

print(count)
0