結果

問題 No.610 区間賞(Section Award)
ユーザー roarisroaris
提出日時 2019-12-17 23:41:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 317 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 103,836 KB
最終ジャッジ日時 2024-07-04 23:45:50
合計ジャッジ時間 5,963 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 40 ms
51,328 KB
testcase_03 AC 38 ms
51,968 KB
testcase_04 AC 35 ms
51,456 KB
testcase_05 AC 48 ms
52,352 KB
testcase_06 AC 43 ms
58,112 KB
testcase_07 AC 47 ms
52,352 KB
testcase_08 AC 46 ms
58,112 KB
testcase_09 AC 48 ms
51,712 KB
testcase_10 AC 39 ms
57,728 KB
testcase_11 AC 38 ms
57,984 KB
testcase_12 AC 34 ms
52,096 KB
testcase_13 AC 39 ms
57,728 KB
testcase_14 AC 41 ms
58,112 KB
testcase_15 AC 40 ms
57,600 KB
testcase_16 AC 39 ms
57,600 KB
testcase_17 AC 39 ms
57,856 KB
testcase_18 AC 36 ms
52,096 KB
testcase_19 AC 51 ms
68,608 KB
testcase_20 AC 87 ms
103,836 KB
testcase_21 AC 47 ms
65,792 KB
testcase_22 AC 69 ms
89,088 KB
testcase_23 AC 44 ms
64,000 KB
testcase_24 AC 50 ms
70,272 KB
testcase_25 AC 45 ms
62,464 KB
testcase_26 AC 60 ms
78,848 KB
testcase_27 AC 87 ms
103,536 KB
testcase_28 AC 76 ms
97,792 KB
testcase_29 AC 65 ms
86,144 KB
testcase_30 AC 72 ms
94,336 KB
testcase_31 AC 59 ms
78,592 KB
testcase_32 AC 76 ms
98,560 KB
testcase_33 AC 46 ms
65,664 KB
testcase_34 AC 87 ms
103,424 KB
testcase_35 AC 60 ms
80,512 KB
testcase_36 AC 80 ms
101,632 KB
testcase_37 AC 74 ms
93,824 KB
testcase_38 AC 50 ms
68,992 KB
testcase_39 AC 86 ms
103,552 KB
testcase_40 AC 87 ms
103,680 KB
testcase_41 AC 86 ms
103,552 KB
testcase_42 AC 85 ms
103,680 KB
testcase_43 AC 87 ms
103,552 KB
testcase_44 AC 89 ms
97,408 KB
testcase_45 AC 100 ms
103,496 KB
testcase_46 AC 98 ms
103,296 KB
testcase_47 AC 74 ms
96,512 KB
testcase_48 AC 71 ms
93,056 KB
testcase_49 AC 75 ms
96,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
ans = [True]*(1+N)
j = 0

for i in range(N):
    if not ans[B[i]]:
        continue
    
    while A[j]!=B[i]:
        ans[A[j]] = False
        j += 1
    
    j += 1
    
for i in range(1, N+1):
    if ans[i]:
        print(i)
0