結果

問題 No.1922 Separate and Attach
ユーザー rikein12rikein12
提出日時 2023-01-10 21:34:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 344 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 112,628 KB
最終ジャッジ日時 2024-06-01 08:04:02
合計ジャッジ時間 6,055 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 38 ms
52,992 KB
testcase_02 AC 38 ms
52,556 KB
testcase_03 AC 38 ms
52,396 KB
testcase_04 AC 38 ms
53,296 KB
testcase_05 AC 38 ms
52,744 KB
testcase_06 AC 38 ms
52,340 KB
testcase_07 AC 38 ms
52,276 KB
testcase_08 AC 38 ms
52,616 KB
testcase_09 AC 38 ms
52,944 KB
testcase_10 AC 38 ms
52,552 KB
testcase_11 AC 38 ms
53,088 KB
testcase_12 AC 39 ms
53,648 KB
testcase_13 AC 39 ms
51,952 KB
testcase_14 AC 38 ms
53,248 KB
testcase_15 AC 38 ms
51,816 KB
testcase_16 AC 38 ms
53,752 KB
testcase_17 AC 39 ms
52,144 KB
testcase_18 AC 38 ms
52,240 KB
testcase_19 AC 38 ms
53,200 KB
testcase_20 AC 38 ms
52,992 KB
testcase_21 AC 38 ms
52,200 KB
testcase_22 AC 39 ms
52,900 KB
testcase_23 WA -
testcase_24 AC 38 ms
52,868 KB
testcase_25 AC 39 ms
52,216 KB
testcase_26 WA -
testcase_27 AC 41 ms
58,968 KB
testcase_28 AC 45 ms
61,612 KB
testcase_29 WA -
testcase_30 AC 95 ms
105,296 KB
testcase_31 AC 92 ms
112,628 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 116 ms
107,236 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 AC 114 ms
107,488 KB
testcase_48 AC 104 ms
103,160 KB
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 AC 39 ms
52,252 KB
testcase_53 AC 38 ms
52,768 KB
testcase_54 AC 39 ms
52,640 KB
testcase_55 AC 39 ms
52,588 KB
testcase_56 AC 38 ms
53,676 KB
testcase_57 AC 38 ms
53,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
B = 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