結果

問題 No.1604 Swap Sort:ONE
ユーザー MineMine
提出日時 2021-09-10 17:53:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 398 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 65,172 KB
最終ジャッジ日時 2024-06-11 16:52:50
合計ジャッジ時間 2,915 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
53,688 KB
testcase_01 AC 31 ms
53,868 KB
testcase_02 AC 31 ms
53,284 KB
testcase_03 AC 30 ms
52,428 KB
testcase_04 AC 30 ms
52,572 KB
testcase_05 AC 35 ms
61,144 KB
testcase_06 AC 73 ms
63,824 KB
testcase_07 AC 81 ms
65,136 KB
testcase_08 AC 84 ms
64,516 KB
testcase_09 AC 79 ms
63,688 KB
testcase_10 AC 83 ms
65,172 KB
testcase_11 AC 81 ms
63,624 KB
testcase_12 AC 81 ms
64,624 KB
testcase_13 AC 83 ms
63,552 KB
testcase_14 AC 83 ms
64,416 KB
testcase_15 AC 82 ms
64,072 KB
testcase_16 AC 83 ms
64,888 KB
testcase_17 AC 56 ms
62,532 KB
testcase_18 AC 54 ms
63,296 KB
testcase_19 AC 78 ms
64,932 KB
testcase_20 AC 53 ms
62,132 KB
testcase_21 AC 79 ms
64,064 KB
testcase_22 AC 67 ms
62,636 KB
testcase_23 AC 42 ms
62,292 KB
testcase_24 AC 38 ms
60,036 KB
testcase_25 AC 77 ms
64,296 KB
testcase_26 AC 60 ms
62,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    n = int(input())
    p = list(map(int, input().split()))
    ans = 0
    flag = True
    while flag:
        flag = False
        for i in range(n-1):
            if p[i] > p[i+1]:
                p[i], p[i+1] = p[i+1], p[i]
                ans += 1
                flag = True

    for i in range(n-1):
        if p[i] == p[i+1]:
            return -1
    return ans

print(main())
0