結果

問題 No.1425 Yet Another Cyclic Shifts Sorting
ユーザー convexineqconvexineq
提出日時 2021-03-13 00:16:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 554 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 110,260 KB
最終ジャッジ日時 2024-10-14 16:29:25
合計ジャッジ時間 5,024 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 37 ms
51,456 KB
testcase_02 AC 35 ms
51,840 KB
testcase_03 AC 35 ms
51,968 KB
testcase_04 AC 39 ms
51,968 KB
testcase_05 AC 36 ms
51,456 KB
testcase_06 AC 35 ms
51,968 KB
testcase_07 AC 35 ms
51,840 KB
testcase_08 AC 36 ms
51,968 KB
testcase_09 AC 36 ms
51,584 KB
testcase_10 AC 36 ms
51,456 KB
testcase_11 AC 36 ms
51,968 KB
testcase_12 AC 36 ms
51,712 KB
testcase_13 AC 36 ms
51,968 KB
testcase_14 AC 37 ms
51,456 KB
testcase_15 AC 35 ms
51,584 KB
testcase_16 AC 37 ms
51,840 KB
testcase_17 AC 36 ms
51,712 KB
testcase_18 AC 37 ms
51,968 KB
testcase_19 AC 36 ms
51,712 KB
testcase_20 AC 37 ms
51,712 KB
testcase_21 AC 35 ms
52,224 KB
testcase_22 AC 94 ms
105,088 KB
testcase_23 AC 56 ms
71,296 KB
testcase_24 AC 54 ms
69,248 KB
testcase_25 AC 105 ms
107,520 KB
testcase_26 AC 111 ms
109,560 KB
testcase_27 AC 109 ms
105,856 KB
testcase_28 AC 113 ms
110,260 KB
testcase_29 AC 67 ms
80,256 KB
testcase_30 AC 61 ms
74,496 KB
testcase_31 AC 116 ms
109,396 KB
testcase_32 AC 64 ms
77,952 KB
testcase_33 AC 49 ms
62,208 KB
testcase_34 AC 69 ms
82,048 KB
testcase_35 AC 113 ms
106,060 KB
testcase_36 AC 84 ms
101,504 KB
testcase_37 AC 52 ms
66,688 KB
testcase_38 AC 117 ms
109,584 KB
testcase_39 AC 45 ms
60,032 KB
testcase_40 AC 104 ms
108,800 KB
testcase_41 AC 62 ms
77,568 KB
testcase_42 AC 66 ms
82,688 KB
testcase_43 AC 46 ms
61,952 KB
testcase_44 AC 50 ms
66,432 KB
testcase_45 AC 111 ms
109,304 KB
testcase_46 AC 114 ms
109,820 KB
testcase_47 AC 114 ms
110,072 KB
testcase_48 AC 113 ms
109,688 KB
testcase_49 AC 113 ms
109,564 KB
testcase_50 AC 37 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
*a, = map(int,input().split())
v = 10**10
p = [0]*n
for i in range(n)[::-1]:
    if a[i] > v: break
    p[i] = 1
    v = a[i]
v = -1
q = [0]*n
for i in range(n):
    if a[i] < v: break
    q[i] = 1
    v = a[i]
idx = i
v = q[idx]
for i in range(idx,n):
    if a[i] < v: break
    q[i] = 1
    v = a[i]

L,R = a[0],a[idx-1]
#print(L,R,idx)
a.append(10**10)
p.append(1)
ans = 2
for i in range(idx+1,n+1):
    if q[i-1] == p[i] == 1 and a[i-1] <= L and R <= a[i]:
        ans = 1
#print(p)
#print(idx,q)
if p[0] == 1:
    ans = 0
print(ans)
0