結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 37 ms
52,700 KB
testcase_02 AC 38 ms
53,640 KB
testcase_03 AC 38 ms
53,076 KB
testcase_04 AC 39 ms
53,344 KB
testcase_05 AC 42 ms
52,068 KB
testcase_06 AC 38 ms
53,016 KB
testcase_07 AC 38 ms
52,632 KB
testcase_08 AC 40 ms
52,392 KB
testcase_09 AC 39 ms
53,792 KB
testcase_10 AC 39 ms
52,752 KB
testcase_11 AC 39 ms
52,280 KB
testcase_12 AC 37 ms
53,008 KB
testcase_13 AC 38 ms
52,656 KB
testcase_14 AC 38 ms
52,840 KB
testcase_15 AC 38 ms
52,620 KB
testcase_16 AC 38 ms
52,768 KB
testcase_17 AC 38 ms
52,900 KB
testcase_18 AC 39 ms
52,336 KB
testcase_19 AC 38 ms
53,088 KB
testcase_20 AC 38 ms
52,660 KB
testcase_21 AC 38 ms
53,556 KB
testcase_22 AC 39 ms
52,344 KB
testcase_23 WA -
testcase_24 AC 37 ms
52,552 KB
testcase_25 AC 38 ms
52,008 KB
testcase_26 WA -
testcase_27 AC 42 ms
58,560 KB
testcase_28 AC 46 ms
61,560 KB
testcase_29 WA -
testcase_30 AC 93 ms
105,296 KB
testcase_31 AC 91 ms
112,860 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 111 ms
107,212 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 111 ms
107,344 KB
testcase_48 AC 101 ms
102,956 KB
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 AC 38 ms
52,488 KB
testcase_53 AC 38 ms
53,188 KB
testcase_54 AC 37 ms
52,816 KB
testcase_55 AC 36 ms
52,212 KB
testcase_56 AC 37 ms
52,508 KB
testcase_57 AC 37 ms
52,628 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