結果

問題 No.1604 Swap Sort:ONE
ユーザー wolgnikwolgnik
提出日時 2021-07-16 22:27:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 347 ms / 2,000 ms
コード長 455 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 70,360 KB
最終ジャッジ日時 2024-07-06 09:53:20
合計ジャッジ時間 7,860 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
63,272 KB
testcase_01 AC 47 ms
61,500 KB
testcase_02 AC 49 ms
63,292 KB
testcase_03 AC 46 ms
62,236 KB
testcase_04 AC 45 ms
61,616 KB
testcase_05 AC 206 ms
67,968 KB
testcase_06 AC 326 ms
70,172 KB
testcase_07 AC 346 ms
69,548 KB
testcase_08 AC 347 ms
69,128 KB
testcase_09 AC 346 ms
69,260 KB
testcase_10 AC 346 ms
70,012 KB
testcase_11 AC 344 ms
69,064 KB
testcase_12 AC 347 ms
69,172 KB
testcase_13 AC 345 ms
70,360 KB
testcase_14 AC 346 ms
69,428 KB
testcase_15 AC 346 ms
68,856 KB
testcase_16 AC 346 ms
68,964 KB
testcase_17 AC 233 ms
68,660 KB
testcase_18 AC 237 ms
69,280 KB
testcase_19 AC 335 ms
68,772 KB
testcase_20 AC 223 ms
68,224 KB
testcase_21 AC 333 ms
69,484 KB
testcase_22 AC 292 ms
69,592 KB
testcase_23 AC 143 ms
65,492 KB
testcase_24 AC 106 ms
66,420 KB
testcase_25 AC 332 ms
69,328 KB
testcase_26 AC 256 ms
69,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
N = int(input())
a = list(map(int, input().split()))
table = [0] * N
for i in range(N): table[a[i] - 1] = i

res = 0
for _ in range(10000):
  for i in range(N):
    if i - 1 in range(N) and table[i - 1] > table[i]:
      table[i - 1], table[i] = table[i], table[i - 1]
      res += 1
    if i + 1 in range(N) and table[i + 1] < table[i]:
      table[i + 1], table[i] = table[i], table[i + 1]
      res += 1
print(res)
0