結果

問題 No.1115 二つの数列 / Two Sequences
ユーザー rei60rei60
提出日時 2020-08-29 12:00:31
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 277 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 82,844 KB
実行使用メモリ 168,132 KB
最終ジャッジ日時 2024-11-14 05:32:10
合計ジャッジ時間 67,037 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,110 ms
75,176 KB
testcase_01 AC 37 ms
161,024 KB
testcase_02 AC 38 ms
60,700 KB
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 AC 354 ms
71,696 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 36 ms
59,780 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 37 ms
59,752 KB
testcase_16 AC 37 ms
134,772 KB
testcase_17 AC 37 ms
59,096 KB
testcase_18 AC 42 ms
163,780 KB
testcase_19 AC 43 ms
67,068 KB
testcase_20 AC 37 ms
124,204 KB
testcase_21 AC 37 ms
59,232 KB
testcase_22 AC 37 ms
139,876 KB
testcase_23 AC 1,164 ms
75,348 KB
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 TLE -
testcase_34 AC 37 ms
52,992 KB
testcase_35 AC 37 ms
53,196 KB
testcase_36 AC 37 ms
52,332 KB
testcase_37 AC 38 ms
53,012 KB
testcase_38 AC 37 ms
52,188 KB
testcase_39 AC 37 ms
168,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = {int(x):i for i,x in enumerate(input().split())}
B = list(map(int, input().split()))

exch = 0
for i in range(len(B)-1, 0, -1):
    for j in range(i):
        if A[B[j]] > A[B[j+1]]:
            B[j], B[j+1] = B[j+1], B[j]
            exch += 1
print(exch)
0