結果

問題 No.3280 Black-Tailed Gull vs Monster
ユーザー kidodesu
提出日時 2025-09-26 21:22:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 163 ms / 2,000 ms
コード長 336 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 82,672 KB
実行使用メモリ 124,832 KB
最終ジャッジ日時 2025-09-26 21:23:05
合計ジャッジ時間 5,186 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 40
権限があれば一括ダウンロードができます

ソースコード

diff #

n, x, q = map(int, input().split())
ans = 0
for _ in range(q):
    m = int(input())
    F = list(map(int, input().split()))
    t = 0
    C = set()
    for a in F:
        if a == x:
            t = 2
        else:
            if a in C and t != 2:
                t = 1
            C.add(a)
    ans += t
print(ans / 2)
                
0