結果

問題 No.1425 Yet Another Cyclic Shifts Sorting
ユーザー H3PO4H3PO4
提出日時 2022-07-26 08:18:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 557 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 106,396 KB
最終ジャッジ日時 2024-07-16 00:29:47
合計ジャッジ時間 5,927 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,360 KB
testcase_01 AC 38 ms
52,200 KB
testcase_02 AC 37 ms
53,560 KB
testcase_03 AC 37 ms
52,000 KB
testcase_04 AC 39 ms
53,416 KB
testcase_05 WA -
testcase_06 AC 37 ms
53,332 KB
testcase_07 AC 38 ms
52,764 KB
testcase_08 WA -
testcase_09 AC 37 ms
52,992 KB
testcase_10 AC 36 ms
52,528 KB
testcase_11 AC 37 ms
53,696 KB
testcase_12 AC 38 ms
52,652 KB
testcase_13 AC 38 ms
53,004 KB
testcase_14 AC 39 ms
51,948 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 38 ms
52,352 KB
testcase_19 AC 38 ms
53,764 KB
testcase_20 AC 39 ms
52,336 KB
testcase_21 AC 37 ms
53,028 KB
testcase_22 AC 76 ms
99,288 KB
testcase_23 AC 49 ms
69,288 KB
testcase_24 AC 49 ms
66,792 KB
testcase_25 AC 81 ms
101,716 KB
testcase_26 AC 95 ms
101,800 KB
testcase_27 AC 81 ms
104,020 KB
testcase_28 AC 97 ms
101,952 KB
testcase_29 AC 57 ms
75,172 KB
testcase_30 AC 52 ms
70,968 KB
testcase_31 AC 97 ms
101,816 KB
testcase_32 AC 54 ms
73,400 KB
testcase_33 AC 44 ms
60,512 KB
testcase_34 AC 58 ms
76,148 KB
testcase_35 AC 86 ms
106,396 KB
testcase_36 AC 97 ms
98,508 KB
testcase_37 AC 52 ms
67,032 KB
testcase_38 AC 135 ms
103,516 KB
testcase_39 AC 45 ms
61,068 KB
testcase_40 AC 112 ms
104,408 KB
testcase_41 AC 67 ms
76,360 KB
testcase_42 AC 72 ms
79,860 KB
testcase_43 AC 45 ms
62,024 KB
testcase_44 AC 50 ms
65,876 KB
testcase_45 AC 135 ms
103,456 KB
testcase_46 AC 133 ms
103,052 KB
testcase_47 AC 135 ms
103,968 KB
testcase_48 AC 135 ms
103,308 KB
testcase_49 AC 135 ms
103,196 KB
testcase_50 AC 38 ms
52,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def find_sorted_min_idx(N, A):
    SA = sorted(A)
    for i in range(N - 1, -1, -1):
        if A[i] != SA[i]:
            return i + 1
    return 0


def is_cyclic_shift(N, A):
    ct = 0
    for i in range(N - 1):
        if A[i] > A[i + 1]:
            ct += 1
    return ct <= 1


def solve(N, A):
    sorted_min_idx = find_sorted_min_idx(N, A)
    if not sorted_min_idx:
        return 0
    if is_cyclic_shift(sorted_min_idx, A[:sorted_min_idx]):
        return 1
    return 2


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