結果

問題 No.1425 Yet Another Cyclic Shifts Sorting
ユーザー tamatotamato
提出日時 2021-03-12 22:15:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 818 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 104,648 KB
最終ジャッジ日時 2024-10-14 16:18:23
合計ジャッジ時間 4,979 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,704 KB
testcase_01 AC 38 ms
52,480 KB
testcase_02 AC 42 ms
52,800 KB
testcase_03 AC 39 ms
52,212 KB
testcase_04 AC 38 ms
52,400 KB
testcase_05 AC 39 ms
52,864 KB
testcase_06 AC 38 ms
52,408 KB
testcase_07 AC 39 ms
53,464 KB
testcase_08 AC 38 ms
52,732 KB
testcase_09 AC 39 ms
52,280 KB
testcase_10 AC 38 ms
53,352 KB
testcase_11 AC 39 ms
52,736 KB
testcase_12 AC 39 ms
53,508 KB
testcase_13 AC 38 ms
53,076 KB
testcase_14 AC 39 ms
52,548 KB
testcase_15 AC 39 ms
53,684 KB
testcase_16 AC 38 ms
52,936 KB
testcase_17 AC 39 ms
53,212 KB
testcase_18 AC 38 ms
53,352 KB
testcase_19 AC 39 ms
52,768 KB
testcase_20 AC 39 ms
52,644 KB
testcase_21 AC 38 ms
53,164 KB
testcase_22 AC 85 ms
100,056 KB
testcase_23 AC 50 ms
69,212 KB
testcase_24 AC 48 ms
67,848 KB
testcase_25 AC 88 ms
103,244 KB
testcase_26 AC 100 ms
100,016 KB
testcase_27 AC 85 ms
102,088 KB
testcase_28 AC 99 ms
100,084 KB
testcase_29 AC 56 ms
73,920 KB
testcase_30 AC 52 ms
69,652 KB
testcase_31 AC 98 ms
100,312 KB
testcase_32 AC 54 ms
72,324 KB
testcase_33 AC 44 ms
60,824 KB
testcase_34 AC 58 ms
75,944 KB
testcase_35 AC 89 ms
104,648 KB
testcase_36 AC 94 ms
93,912 KB
testcase_37 AC 50 ms
66,300 KB
testcase_38 AC 129 ms
101,684 KB
testcase_39 AC 44 ms
60,748 KB
testcase_40 AC 105 ms
100,208 KB
testcase_41 AC 63 ms
74,292 KB
testcase_42 AC 69 ms
78,200 KB
testcase_43 AC 44 ms
61,976 KB
testcase_44 AC 49 ms
64,456 KB
testcase_45 AC 130 ms
102,088 KB
testcase_46 AC 131 ms
101,164 KB
testcase_47 AC 131 ms
102,056 KB
testcase_48 AC 130 ms
101,440 KB
testcase_49 AC 132 ms
101,804 KB
testcase_50 AC 37 ms
52,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.readline

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

    A_sorted = sorted(A)
    if A == A_sorted:
        print(0)
    else:
        ii = -1
        for i in range(1, N):
            if A[i] < A[i-1]:
                if ii != -1:
                    print(2)
                    exit()
                else:
                    ii = i
        if ii == -1:
            print(2)
            exit()
        if A[ii] > A[0]:
            print(2)
            exit()
        for i in range(ii, N-1):
            if A[i] <= A[0] and A[i+1] >= A[ii-1]:
                print(1)
                exit()
        if A[-1] <= A[0]:
            print(1)
            exit()
        print(2)


if __name__ == '__main__':
    main()
0