結果

問題 No.1922 Separate and Attach
ユーザー rikein12rikein12
提出日時 2023-01-10 22:07:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 344 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 112,784 KB
最終ジャッジ日時 2024-06-01 07:59:31
合計ジャッジ時間 5,696 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,872 KB
testcase_01 AC 38 ms
53,200 KB
testcase_02 AC 37 ms
53,136 KB
testcase_03 AC 37 ms
53,020 KB
testcase_04 AC 39 ms
52,152 KB
testcase_05 AC 38 ms
52,336 KB
testcase_06 AC 38 ms
53,136 KB
testcase_07 AC 38 ms
53,308 KB
testcase_08 AC 37 ms
52,316 KB
testcase_09 AC 38 ms
53,016 KB
testcase_10 AC 37 ms
53,100 KB
testcase_11 AC 38 ms
53,560 KB
testcase_12 AC 38 ms
52,732 KB
testcase_13 AC 37 ms
51,960 KB
testcase_14 AC 36 ms
52,904 KB
testcase_15 AC 37 ms
52,612 KB
testcase_16 AC 38 ms
52,980 KB
testcase_17 AC 38 ms
52,000 KB
testcase_18 AC 37 ms
51,820 KB
testcase_19 AC 38 ms
51,876 KB
testcase_20 AC 37 ms
51,996 KB
testcase_21 AC 38 ms
52,680 KB
testcase_22 AC 38 ms
52,084 KB
testcase_23 AC 38 ms
52,424 KB
testcase_24 AC 38 ms
53,084 KB
testcase_25 AC 38 ms
52,680 KB
testcase_26 AC 38 ms
53,168 KB
testcase_27 AC 42 ms
59,140 KB
testcase_28 AC 45 ms
61,604 KB
testcase_29 AC 53 ms
72,116 KB
testcase_30 AC 93 ms
105,444 KB
testcase_31 AC 92 ms
112,784 KB
testcase_32 AC 102 ms
102,968 KB
testcase_33 AC 114 ms
107,344 KB
testcase_34 AC 105 ms
103,092 KB
testcase_35 AC 105 ms
103,060 KB
testcase_36 AC 114 ms
107,084 KB
testcase_37 AC 107 ms
103,032 KB
testcase_38 AC 108 ms
103,432 KB
testcase_39 AC 110 ms
102,820 KB
testcase_40 AC 108 ms
103,372 KB
testcase_41 AC 113 ms
102,944 KB
testcase_42 AC 103 ms
102,820 KB
testcase_43 AC 104 ms
103,144 KB
testcase_44 AC 105 ms
103,108 KB
testcase_45 AC 105 ms
102,820 KB
testcase_46 AC 108 ms
103,016 KB
testcase_47 AC 112 ms
107,200 KB
testcase_48 AC 100 ms
103,084 KB
testcase_49 AC 115 ms
107,200 KB
testcase_50 AC 101 ms
103,120 KB
testcase_51 AC 106 ms
102,820 KB
testcase_52 AC 39 ms
52,452 KB
testcase_53 AC 37 ms
52,700 KB
testcase_54 AC 38 ms
52,484 KB
testcase_55 AC 37 ms
52,940 KB
testcase_56 AC 39 ms
52,356 KB
testcase_57 AC 38 ms
53,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

C = {a:i for i,a in enumerate(A)}

B = [C[b] for b in B]

now = set()
#print(B)
for b in B:
    if b-1 in now:
        now.add(b)
        now.remove(b-1)
    else:
        now.add(b)

n = len(now)
ans = 0
while n>1:
    n = (n+1)//2
    ans += 1
print(ans)
0