結果
| 問題 | No.3280 Black-Tailed Gull vs Monster |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2025-09-26 21:30:22 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 147 ms / 2,000 ms |
| + 798µs | |
| コード長 | 201 bytes |
| 記録 | |
| コンパイル時間 | 230 ms |
| コンパイル使用メモリ | 96,112 KB |
| 実行使用メモリ | 134,400 KB |
| 最終ジャッジ日時 | 2026-07-15 05:46:26 |
| 合計ジャッジ時間 | 6,312 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 40 |
ソースコード
n,x,q=map(int,input().split()) ans=0 for _ in range(q): m=int(input()) L=list(map(int,input().split())) S=set(L) if x in S: ans+=1 continue elif len(S)==m: pass else: ans+=0.5 print(ans)