結果

問題 No.1425 Yet Another Cyclic Shifts Sorting
ユーザー roarisroaris
提出日時 2021-03-12 23:54:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 491 bytes
コンパイル時間 807 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 131,792 KB
最終ジャッジ日時 2024-04-22 15:12:58
合計ジャッジ時間 6,469 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 40 ms
52,224 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 40 ms
52,096 KB
testcase_04 AC 41 ms
51,840 KB
testcase_05 WA -
testcase_06 AC 41 ms
51,712 KB
testcase_07 AC 40 ms
51,968 KB
testcase_08 WA -
testcase_09 AC 41 ms
51,968 KB
testcase_10 AC 41 ms
51,840 KB
testcase_11 AC 40 ms
52,224 KB
testcase_12 AC 40 ms
52,480 KB
testcase_13 AC 41 ms
51,968 KB
testcase_14 AC 40 ms
52,096 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 41 ms
51,712 KB
testcase_19 AC 41 ms
51,712 KB
testcase_20 AC 43 ms
52,096 KB
testcase_21 AC 41 ms
51,840 KB
testcase_22 AC 96 ms
100,992 KB
testcase_23 AC 56 ms
69,192 KB
testcase_24 AC 55 ms
67,712 KB
testcase_25 AC 98 ms
104,448 KB
testcase_26 AC 111 ms
101,452 KB
testcase_27 AC 110 ms
104,960 KB
testcase_28 AC 130 ms
129,560 KB
testcase_29 AC 69 ms
84,736 KB
testcase_30 AC 66 ms
77,440 KB
testcase_31 AC 131 ms
129,492 KB
testcase_32 AC 66 ms
82,756 KB
testcase_33 AC 51 ms
62,720 KB
testcase_34 AC 75 ms
87,296 KB
testcase_35 AC 111 ms
105,980 KB
testcase_36 AC 123 ms
107,392 KB
testcase_37 AC 61 ms
71,168 KB
testcase_38 AC 170 ms
131,496 KB
testcase_39 AC 54 ms
62,592 KB
testcase_40 AC 137 ms
103,424 KB
testcase_41 AC 77 ms
85,396 KB
testcase_42 AC 90 ms
91,776 KB
testcase_43 AC 50 ms
64,000 KB
testcase_44 AC 61 ms
70,144 KB
testcase_45 AC 168 ms
131,276 KB
testcase_46 AC 163 ms
130,964 KB
testcase_47 AC 163 ms
131,792 KB
testcase_48 AC 167 ms
131,284 KB
testcase_49 AC 164 ms
131,408 KB
testcase_50 AC 39 ms
51,968 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]))

if down[N]==1:
    print(1)
    exit()

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

print(2)
0