結果
問題 | No.206 数の積集合を求めるクエリ |
ユーザー |
|
提出日時 | 2015-05-09 07:13:15 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 220 bytes |
コンパイル時間 | 81 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 47,352 KB |
最終ジャッジ日時 | 2024-07-05 21:07:55 |
合計ジャッジ時間 | 17,185 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
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))