結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 40 ms
51,840 KB
testcase_04 WA -
testcase_05 AC 40 ms
51,968 KB
testcase_06 WA -
testcase_07 AC 40 ms
51,968 KB
testcase_08 AC 40 ms
52,608 KB
testcase_09 AC 40 ms
51,840 KB
testcase_10 AC 40 ms
52,096 KB
testcase_11 AC 40 ms
51,968 KB
testcase_12 AC 40 ms
51,712 KB
testcase_13 AC 40 ms
51,840 KB
testcase_14 AC 40 ms
51,712 KB
testcase_15 AC 40 ms
51,712 KB
testcase_16 AC 40 ms
52,096 KB
testcase_17 AC 41 ms
51,968 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 41 ms
51,840 KB
testcase_22 AC 93 ms
101,248 KB
testcase_23 AC 55 ms
68,736 KB
testcase_24 AC 53 ms
67,200 KB
testcase_25 AC 97 ms
104,320 KB
testcase_26 AC 109 ms
101,444 KB
testcase_27 AC 116 ms
105,088 KB
testcase_28 AC 133 ms
129,884 KB
testcase_29 AC 73 ms
84,864 KB
testcase_30 AC 66 ms
77,568 KB
testcase_31 AC 134 ms
129,508 KB
testcase_32 AC 72 ms
82,688 KB
testcase_33 AC 52 ms
63,104 KB
testcase_34 AC 75 ms
87,552 KB
testcase_35 AC 118 ms
105,984 KB
testcase_36 AC 124 ms
107,648 KB
testcase_37 AC 63 ms
71,296 KB
testcase_38 AC 170 ms
131,248 KB
testcase_39 AC 52 ms
62,720 KB
testcase_40 AC 136 ms
103,296 KB
testcase_41 AC 82 ms
85,888 KB
testcase_42 AC 90 ms
92,544 KB
testcase_43 AC 53 ms
64,000 KB
testcase_44 AC 62 ms
69,888 KB
testcase_45 AC 169 ms
131,796 KB
testcase_46 AC 170 ms
130,900 KB
testcase_47 AC 170 ms
131,548 KB
testcase_48 AC 170 ms
131,036 KB
testcase_49 AC 170 ms
131,388 KB
testcase_50 AC 40 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]))
    
if down[N]==1 and A[-1]==min(A):
    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