結果

問題 No.1115 二つの数列 / Two Sequences
ユーザー ryo_nryo_n
提出日時 2020-07-17 23:15:07
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 761 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 41,860 KB
最終ジャッジ日時 2024-11-30 02:52:38
合計ジャッジ時間 71,537 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 30 ms
16,000 KB
testcase_02 AC 31 ms
36,544 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 31 ms
16,000 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 31 ms
15,872 KB
testcase_16 AC 31 ms
22,912 KB
testcase_17 AC 31 ms
15,744 KB
testcase_18 AC 32 ms
28,252 KB
testcase_19 AC 31 ms
16,000 KB
testcase_20 AC 30 ms
34,968 KB
testcase_21 AC 30 ms
16,000 KB
testcase_22 AC 30 ms
24,828 KB
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 AC 117 ms
25,424 KB
testcase_34 AC 31 ms
10,752 KB
testcase_35 AC 31 ms
10,624 KB
testcase_36 AC 31 ms
10,624 KB
testcase_37 AC 31 ms
10,752 KB
testcase_38 AC 31 ms
10,752 KB
testcase_39 AC 30 ms
29,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 8)

input = sys.stdin.readline


def main():
    N = int(input())
    A = [int(x) for x in input().split()]
    B = [int(x) for x in input().split()]

    dic = {}
    for i, b in enumerate(B):
        dic[b] = i

    C = []
    for a in A:
        C.append(dic[a])

    def babble_sort(arr):
        N = len(arr)

        x = 0
        for i in range(N - 1):

            cnt = 0

            for j in range(0, N - 1 - i):
                if arr[j] > arr[j + 1]:
                    arr[j], arr[j + 1] = arr[j + 1], arr[j]
                    cnt = cnt + 1
                    x += 1

            if cnt == 0:
                return x

        return x

    print(babble_sort(C))


if __name__ == '__main__':
    main()
0