結果

問題 No.3010 水色コーダーさん
ユーザー 高橋ゆに
提出日時 2025-01-19 18:14:29
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 331 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 65,152 KB
最終ジャッジ日時 2025-01-25 21:48:37
合計ジャッジ時間 2,843 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 3
other RE * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
assert(1 <= N <= 2 * (10 ** 5))
assert(4 <= M <= 10)

ans = 0
for _ in range(N):
    result, rating = input().split()
    assert(len(result) == M)
    assert(set(result) == {'o','x'})
    assert(0 <= rating <= 5000)
    if result[:4] != "oooo" and int(rating) >= 1200:
        ans += 1

print(ans)
0