結果

問題 No.365 ジェンガソート
ユーザー UEUEUE66UEUEUE66
提出日時 2019-07-17 17:23:03
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 405 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 31,276 KB
最終ジャッジ日時 2024-12-22 21:43:06
合計ジャッジ時間 74,059 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
17,440 KB
testcase_01 AC 29 ms
16,128 KB
testcase_02 AC 31 ms
30,552 KB
testcase_03 AC 29 ms
16,000 KB
testcase_04 AC 29 ms
16,000 KB
testcase_05 AC 32 ms
21,760 KB
testcase_06 AC 29 ms
16,000 KB
testcase_07 AC 29 ms
30,272 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 30 ms
15,872 KB
testcase_15 AC 30 ms
17,316 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
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 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 AC 108 ms
25,896 KB
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def insertion_sort(n, a, c):
    for i in range(n):
        flag = 0
        for j in reversed(range(i)):
            if a[j] > a[j + 1]:
                a[j], a[j + 1] = a[j + 1], a[j]
                flag = 1
            else:
                break
        if flag == 1:
            c += 1
    return c


N = int(input())
A = list(map(int, input().split()))
count = 0

print(insertion_sort(N, A, count))
0