結果

問題 No.3010 水色コーダーさん
ユーザー 高橋ゆに
提出日時 2025-01-19 18:18:35
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 336 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 67,520 KB
最終ジャッジ日時 2025-01-25 21:59:05
合計ジャッジ時間 4,990 ms
ジャッジサーバーID
(参考情報)
judge7 / judge10
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 RE * 2
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 <= int(rating) <= 5000)
    if result[:4] != "oooo" and int(rating) >= 1200:
        ans += 1

print(ans)
0