結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,736 KB
testcase_01 AC 39 ms
52,832 KB
testcase_02 AC 37 ms
52,288 KB
testcase_03 AC 36 ms
52,684 KB
testcase_04 AC 38 ms
52,764 KB
testcase_05 AC 37 ms
52,940 KB
testcase_06 AC 38 ms
52,068 KB
testcase_07 AC 38 ms
52,492 KB
testcase_08 AC 37 ms
53,232 KB
testcase_09 AC 38 ms
52,328 KB
testcase_10 AC 37 ms
52,900 KB
testcase_11 AC 39 ms
52,216 KB
testcase_12 AC 38 ms
52,236 KB
testcase_13 AC 39 ms
52,348 KB
testcase_14 AC 38 ms
52,508 KB
testcase_15 AC 38 ms
52,620 KB
testcase_16 AC 39 ms
52,892 KB
testcase_17 AC 40 ms
52,364 KB
testcase_18 AC 40 ms
52,392 KB
testcase_19 AC 38 ms
52,868 KB
testcase_20 AC 40 ms
51,996 KB
testcase_21 AC 38 ms
53,428 KB
testcase_22 AC 38 ms
53,060 KB
testcase_23 AC 38 ms
53,104 KB
testcase_24 AC 39 ms
52,772 KB
testcase_25 AC 37 ms
52,552 KB
testcase_26 AC 40 ms
53,164 KB
testcase_27 AC 42 ms
58,384 KB
testcase_28 AC 46 ms
62,464 KB
testcase_29 AC 55 ms
70,544 KB
testcase_30 AC 94 ms
105,496 KB
testcase_31 AC 92 ms
112,440 KB
testcase_32 AC 103 ms
102,892 KB
testcase_33 AC 114 ms
106,840 KB
testcase_34 AC 105 ms
102,740 KB
testcase_35 AC 105 ms
102,860 KB
testcase_36 AC 115 ms
107,356 KB
testcase_37 AC 107 ms
102,904 KB
testcase_38 AC 109 ms
102,928 KB
testcase_39 AC 110 ms
103,176 KB
testcase_40 AC 105 ms
102,788 KB
testcase_41 AC 110 ms
103,040 KB
testcase_42 AC 101 ms
102,668 KB
testcase_43 AC 102 ms
102,672 KB
testcase_44 AC 104 ms
102,944 KB
testcase_45 AC 102 ms
102,664 KB
testcase_46 AC 106 ms
102,864 KB
testcase_47 AC 114 ms
107,104 KB
testcase_48 AC 104 ms
102,808 KB
testcase_49 AC 117 ms
107,088 KB
testcase_50 AC 104 ms
103,164 KB
testcase_51 AC 107 ms
102,696 KB
testcase_52 AC 37 ms
52,140 KB
testcase_53 AC 37 ms
52,144 KB
testcase_54 AC 38 ms
52,096 KB
testcase_55 AC 37 ms
53,548 KB
testcase_56 AC 38 ms
53,084 KB
testcase_57 AC 39 ms
52,724 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