結果

問題 No.3010 水色コーダーさん
ユーザー cologne
提出日時 2025-04-09 11:59:59
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 137 bytes
コンパイル時間 337 ms
コンパイル使用メモリ 12,032 KB
実行使用メモリ 11,648 KB
最終ジャッジ日時 2025-04-09 12:00:02
合計ジャッジ時間 2,684 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 3
other RE * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

a,b=map(int, input().split())
x = 0
for i in range(a):
	z,w=input().split()
	if not z.startswith('oooo') and w >= 1200:
		x += 1
print(x)
0