結果

問題 No.1922 Separate and Attach
ユーザー ytftytft
提出日時 2022-05-07 00:35:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 279 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 104,324 KB
最終ジャッジ日時 2024-07-06 04:18:38
合計ジャッジ時間 5,135 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,936 KB
testcase_01 AC 34 ms
52,616 KB
testcase_02 AC 30 ms
52,572 KB
testcase_03 AC 32 ms
52,372 KB
testcase_04 AC 31 ms
52,928 KB
testcase_05 AC 31 ms
52,932 KB
testcase_06 AC 30 ms
53,276 KB
testcase_07 AC 31 ms
53,512 KB
testcase_08 AC 33 ms
52,552 KB
testcase_09 AC 37 ms
52,584 KB
testcase_10 AC 34 ms
52,608 KB
testcase_11 AC 31 ms
53,012 KB
testcase_12 AC 34 ms
52,812 KB
testcase_13 AC 31 ms
52,376 KB
testcase_14 AC 34 ms
52,792 KB
testcase_15 AC 32 ms
52,256 KB
testcase_16 AC 31 ms
52,420 KB
testcase_17 AC 31 ms
52,820 KB
testcase_18 AC 31 ms
52,528 KB
testcase_19 AC 30 ms
53,280 KB
testcase_20 AC 31 ms
51,824 KB
testcase_21 AC 30 ms
52,816 KB
testcase_22 AC 31 ms
53,720 KB
testcase_23 AC 32 ms
52,140 KB
testcase_24 AC 31 ms
52,884 KB
testcase_25 AC 31 ms
52,876 KB
testcase_26 AC 32 ms
52,640 KB
testcase_27 AC 35 ms
59,244 KB
testcase_28 AC 39 ms
60,648 KB
testcase_29 AC 44 ms
68,048 KB
testcase_30 AC 64 ms
90,696 KB
testcase_31 AC 62 ms
89,048 KB
testcase_32 AC 80 ms
103,948 KB
testcase_33 AC 78 ms
103,904 KB
testcase_34 AC 79 ms
103,888 KB
testcase_35 AC 74 ms
103,052 KB
testcase_36 AC 79 ms
104,024 KB
testcase_37 AC 76 ms
103,684 KB
testcase_38 AC 78 ms
103,968 KB
testcase_39 AC 80 ms
103,928 KB
testcase_40 AC 82 ms
103,996 KB
testcase_41 AC 83 ms
103,808 KB
testcase_42 AC 73 ms
102,608 KB
testcase_43 AC 76 ms
103,960 KB
testcase_44 AC 73 ms
102,596 KB
testcase_45 AC 73 ms
102,704 KB
testcase_46 AC 76 ms
104,324 KB
testcase_47 AC 77 ms
104,020 KB
testcase_48 AC 74 ms
102,564 KB
testcase_49 AC 80 ms
104,276 KB
testcase_50 AC 77 ms
103,888 KB
testcase_51 AC 78 ms
103,952 KB
testcase_52 AC 31 ms
52,984 KB
testcase_53 AC 32 ms
52,484 KB
testcase_54 AC 32 ms
53,380 KB
testcase_55 AC 36 ms
53,128 KB
testcase_56 AC 32 ms
52,228 KB
testcase_57 AC 32 ms
53,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
pos=[0 for i in range(N)]
for i in range(N):
    pos[A[i]-1]=i
B=list(map(int,input().split()))
prev=-1
chunk=0
ans=0
for i in B:
    if prev>pos[i-1]:
        chunk+=1
    prev=pos[i-1]
while chunk>0:
	ans+=1
	chunk//=2
print(ans)
0