結果

問題 No.2999 Long Long Friedrice
ユーザー titiatitia
提出日時 2024-12-24 02:34:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 756 ms / 2,000 ms
コード長 428 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 89,344 KB
最終ジャッジ日時 2024-12-24 02:35:17
合計ジャッジ時間 28,376 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 640 ms
88,960 KB
testcase_01 AC 646 ms
88,832 KB
testcase_02 AC 675 ms
89,024 KB
testcase_03 AC 651 ms
89,184 KB
testcase_04 AC 664 ms
89,196 KB
testcase_05 AC 641 ms
89,196 KB
testcase_06 AC 660 ms
88,960 KB
testcase_07 AC 655 ms
89,344 KB
testcase_08 AC 672 ms
88,960 KB
testcase_09 AC 642 ms
89,216 KB
testcase_10 AC 694 ms
89,032 KB
testcase_11 AC 647 ms
89,088 KB
testcase_12 AC 684 ms
89,024 KB
testcase_13 AC 633 ms
88,960 KB
testcase_14 AC 690 ms
88,960 KB
testcase_15 AC 686 ms
89,088 KB
testcase_16 AC 632 ms
89,088 KB
testcase_17 AC 714 ms
89,088 KB
testcase_18 AC 649 ms
89,088 KB
testcase_19 AC 677 ms
89,088 KB
testcase_20 AC 638 ms
88,832 KB
testcase_21 AC 697 ms
88,960 KB
testcase_22 AC 621 ms
88,960 KB
testcase_23 AC 694 ms
88,960 KB
testcase_24 AC 740 ms
89,088 KB
testcase_25 AC 756 ms
88,832 KB
testcase_26 AC 675 ms
88,960 KB
testcase_27 AC 655 ms
89,088 KB
testcase_28 AC 691 ms
88,960 KB
testcase_29 AC 698 ms
89,088 KB
testcase_30 AC 650 ms
89,088 KB
testcase_31 AC 668 ms
89,088 KB
testcase_32 AC 649 ms
88,960 KB
testcase_33 AC 683 ms
88,960 KB
testcase_34 AC 643 ms
89,088 KB
testcase_35 AC 692 ms
89,088 KB
testcase_36 AC 667 ms
89,024 KB
testcase_37 AC 703 ms
89,088 KB
testcase_38 AC 660 ms
88,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=int(input())
A=list(map(int,input().split()))
B=list(map(int,input().split()))

E=[[] for i in range(10**6+2)]

for i in range(N):
    E[A[i]].append(A[i]+B[i])

USE=[0]*(10**6+2)

Q=[1]
USE[1]=1

while Q:
    x=Q.pop()

    for to in E[x]:
        if USE[to]==0:
            USE[to]=1
            Q.append(to)

ANS=0

for i in range(10**6+2):
    if USE[i]==1:
        ANS=i

print(ANS)
0