結果

問題 No.1922 Separate and Attach
ユーザー rikein12rikein12
提出日時 2023-01-10 21:34:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 344 bytes
コンパイル時間 502 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 112,924 KB
最終ジャッジ日時 2024-12-21 12:29:26
合計ジャッジ時間 5,541 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 33 ms
52,328 KB
testcase_02 AC 33 ms
52,432 KB
testcase_03 AC 33 ms
53,036 KB
testcase_04 AC 32 ms
53,668 KB
testcase_05 AC 31 ms
51,952 KB
testcase_06 AC 32 ms
52,280 KB
testcase_07 AC 31 ms
51,864 KB
testcase_08 AC 33 ms
51,496 KB
testcase_09 AC 32 ms
52,992 KB
testcase_10 AC 33 ms
52,392 KB
testcase_11 AC 31 ms
53,028 KB
testcase_12 AC 32 ms
52,844 KB
testcase_13 AC 32 ms
52,540 KB
testcase_14 AC 31 ms
51,804 KB
testcase_15 AC 31 ms
53,008 KB
testcase_16 AC 30 ms
52,604 KB
testcase_17 AC 32 ms
52,432 KB
testcase_18 AC 32 ms
53,068 KB
testcase_19 AC 31 ms
53,700 KB
testcase_20 AC 30 ms
52,684 KB
testcase_21 AC 33 ms
52,900 KB
testcase_22 AC 32 ms
52,928 KB
testcase_23 WA -
testcase_24 AC 33 ms
51,556 KB
testcase_25 AC 31 ms
53,032 KB
testcase_26 WA -
testcase_27 AC 34 ms
58,420 KB
testcase_28 AC 39 ms
61,652 KB
testcase_29 WA -
testcase_30 AC 85 ms
105,140 KB
testcase_31 AC 82 ms
112,924 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 101 ms
106,824 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 102 ms
107,188 KB
testcase_48 AC 89 ms
102,572 KB
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 AC 32 ms
51,944 KB
testcase_53 AC 32 ms
52,132 KB
testcase_54 AC 33 ms
52,640 KB
testcase_55 AC 34 ms
52,152 KB
testcase_56 AC 33 ms
53,172 KB
testcase_57 AC 33 ms
53,008 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