結果
| 問題 | No.206 数の積集合を求めるクエリ |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2015-05-09 07:13:15 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 220 bytes |
| 記録 | |
| コンパイル時間 | 553 ms |
| コンパイル使用メモリ | 20,824 KB |
| 実行使用メモリ | 49,244 KB |
| 最終ジャッジ日時 | 2026-03-27 06:56:24 |
| 合計ジャッジ時間 | 15,471 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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))