結果
問題 | No.2999 Long Long Friedrice |
ユーザー |
![]() |
提出日時 | 2024-12-24 05:10:38 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 63 ms / 2,000 ms |
コード長 | 422 bytes |
コンパイル時間 | 240 ms |
コンパイル使用メモリ | 82,396 KB |
実行使用メモリ | 65,792 KB |
最終ジャッジ日時 | 2024-12-24 05:10:49 |
合計ジャッジ時間 | 3,233 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 6 |
other | AC * 33 |
ソースコード
from collections import defaultdict, dequeN = int(input())A = list(map(int, input().split()))B = list(map(int, input().split()))adj = defaultdict(list)for a, b in zip(A, B):adj[a].append(b)ans = 1used = set()q = deque([1])while q:x = q.popleft()if x in used: continueused.add(x)ans = max(ans, x)for v in adj[x]:if x+v in used: continueq.append(x+v)print(ans)