結果

問題 No.1425 Yet Another Cyclic Shifts Sorting
ユーザー roarisroaris
提出日時 2021-03-13 00:12:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 187 ms / 2,000 ms
コード長 628 bytes
コンパイル時間 338 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 131,892 KB
最終ジャッジ日時 2024-04-22 17:18:19
合計ジャッジ時間 6,335 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
52,096 KB
testcase_01 AC 45 ms
51,712 KB
testcase_02 AC 46 ms
51,968 KB
testcase_03 AC 43 ms
51,968 KB
testcase_04 AC 44 ms
51,712 KB
testcase_05 AC 43 ms
51,968 KB
testcase_06 AC 47 ms
51,840 KB
testcase_07 AC 47 ms
51,712 KB
testcase_08 AC 43 ms
51,968 KB
testcase_09 AC 44 ms
51,968 KB
testcase_10 AC 43 ms
51,712 KB
testcase_11 AC 45 ms
51,712 KB
testcase_12 AC 44 ms
52,096 KB
testcase_13 AC 43 ms
52,096 KB
testcase_14 AC 45 ms
51,712 KB
testcase_15 AC 45 ms
51,840 KB
testcase_16 AC 44 ms
51,968 KB
testcase_17 AC 44 ms
51,968 KB
testcase_18 AC 43 ms
51,584 KB
testcase_19 AC 44 ms
52,480 KB
testcase_20 AC 45 ms
51,712 KB
testcase_21 AC 43 ms
51,968 KB
testcase_22 AC 98 ms
101,248 KB
testcase_23 AC 58 ms
68,480 KB
testcase_24 AC 58 ms
67,328 KB
testcase_25 AC 103 ms
104,320 KB
testcase_26 AC 118 ms
101,352 KB
testcase_27 AC 130 ms
105,216 KB
testcase_28 AC 149 ms
129,712 KB
testcase_29 AC 83 ms
86,528 KB
testcase_30 AC 78 ms
79,232 KB
testcase_31 AC 146 ms
129,572 KB
testcase_32 AC 81 ms
84,224 KB
testcase_33 AC 60 ms
64,896 KB
testcase_34 AC 91 ms
88,832 KB
testcase_35 AC 131 ms
105,984 KB
testcase_36 AC 135 ms
107,392 KB
testcase_37 AC 69 ms
71,168 KB
testcase_38 AC 179 ms
131,452 KB
testcase_39 AC 58 ms
62,720 KB
testcase_40 AC 147 ms
103,296 KB
testcase_41 AC 92 ms
85,632 KB
testcase_42 AC 101 ms
92,416 KB
testcase_43 AC 62 ms
64,000 KB
testcase_44 AC 68 ms
70,272 KB
testcase_45 AC 183 ms
131,892 KB
testcase_46 AC 178 ms
131,076 KB
testcase_47 AC 181 ms
131,256 KB
testcase_48 AC 182 ms
131,324 KB
testcase_49 AC 187 ms
131,200 KB
testcase_50 AC 47 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

if A==list(sorted(A)):
    print(0)
    exit()

down = [0, 0]

for i in range(N-1):
    down.append(down[-1]+(1 if A[i]>A[i+1] else 0))

M = [0]

for i in range(N):
    M.append(max(M[-1], A[i]))
    
m = min(A)

if down[N]==1:
    for i in range(N-1):
        if A[i]>A[i+1] and A[i+1]==m and A[-1]<=A[0]:
            print(1)
            exit()

for i in range(N-1, 0, -1):
    if i==N-1 or A[i]<=A[i+1]:
        if down[i]==1 and M[i]<=A[i] and A[0]>=A[i-1]:
            print(1)
            exit()
    else:
        break

print(2)
0