結果
| 問題 | No.206 数の積集合を求めるクエリ |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2015-05-09 07:13:15 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 220 bytes |
| 記録 | |
| コンパイル時間 | 284 ms |
| コンパイル使用メモリ | 21,540 KB |
| 実行使用メモリ | 42,424 KB |
| 最終ジャッジ日時 | 2026-08-08 13:34:58 |
| 合計ジャッジ時間 | 16,042 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 21 TLE * 1 -- * 6 |
ソースコード
L, M, N = map(int, input().split())
ase = list(map(int, input().split()))
bse = list(map(int, input().split()))
for _ in range(int(input())):
print(len(set(ase) & set(bse)))
bse = list(map(lambda x: x + 1, bse))