結果

問題 No.1425 Yet Another Cyclic Shifts Sorting
ユーザー roarisroaris
提出日時 2021-03-13 00:08:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 601 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 131,368 KB
最終ジャッジ日時 2024-10-14 14:31:03
合計ジャッジ時間 5,773 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,076 KB
testcase_01 AC 42 ms
53,128 KB
testcase_02 AC 40 ms
52,288 KB
testcase_03 AC 38 ms
53,004 KB
testcase_04 AC 38 ms
52,344 KB
testcase_05 AC 38 ms
52,280 KB
testcase_06 AC 39 ms
53,488 KB
testcase_07 AC 39 ms
52,432 KB
testcase_08 AC 40 ms
52,956 KB
testcase_09 AC 39 ms
52,924 KB
testcase_10 AC 39 ms
53,436 KB
testcase_11 AC 41 ms
53,488 KB
testcase_12 AC 41 ms
53,484 KB
testcase_13 AC 38 ms
52,876 KB
testcase_14 AC 39 ms
52,636 KB
testcase_15 AC 38 ms
53,224 KB
testcase_16 AC 39 ms
53,304 KB
testcase_17 AC 38 ms
52,300 KB
testcase_18 WA -
testcase_19 AC 39 ms
52,656 KB
testcase_20 WA -
testcase_21 AC 38 ms
52,268 KB
testcase_22 AC 83 ms
100,956 KB
testcase_23 AC 51 ms
69,520 KB
testcase_24 AC 49 ms
67,508 KB
testcase_25 AC 87 ms
104,112 KB
testcase_26 AC 101 ms
101,420 KB
testcase_27 AC 110 ms
104,928 KB
testcase_28 AC 127 ms
129,408 KB
testcase_29 AC 66 ms
86,880 KB
testcase_30 AC 61 ms
78,456 KB
testcase_31 AC 123 ms
129,748 KB
testcase_32 AC 67 ms
85,120 KB
testcase_33 AC 50 ms
65,180 KB
testcase_34 AC 74 ms
88,696 KB
testcase_35 AC 113 ms
105,724 KB
testcase_36 AC 116 ms
107,268 KB
testcase_37 AC 57 ms
72,432 KB
testcase_38 AC 160 ms
131,112 KB
testcase_39 AC 48 ms
63,836 KB
testcase_40 AC 129 ms
103,488 KB
testcase_41 AC 77 ms
86,816 KB
testcase_42 AC 86 ms
92,580 KB
testcase_43 AC 51 ms
65,092 KB
testcase_44 AC 57 ms
70,916 KB
testcase_45 AC 161 ms
131,260 KB
testcase_46 AC 161 ms
130,736 KB
testcase_47 AC 161 ms
131,368 KB
testcase_48 AC 160 ms
131,112 KB
testcase_49 AC 160 ms
131,260 KB
testcase_50 AC 38 ms
52,004 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-2, 0, -1):
    if A[i]<=A[i+1]:
        if down[i]==1 and M[i]<=A[i]:
            print(1)
            exit()
    else:
        break

print(2)
0