結果

問題 No.1425 Yet Another Cyclic Shifts Sorting
ユーザー rlangevinrlangevin
提出日時 2023-10-25 20:45:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 177 ms / 2,000 ms
コード長 519 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 111,088 KB
最終ジャッジ日時 2024-09-25 05:54:47
合計ジャッジ時間 6,096 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,212 KB
testcase_01 AC 40 ms
54,152 KB
testcase_02 AC 42 ms
54,704 KB
testcase_03 AC 40 ms
54,220 KB
testcase_04 AC 40 ms
53,804 KB
testcase_05 AC 41 ms
54,448 KB
testcase_06 AC 41 ms
53,944 KB
testcase_07 AC 40 ms
54,120 KB
testcase_08 AC 40 ms
54,236 KB
testcase_09 AC 40 ms
55,032 KB
testcase_10 AC 41 ms
54,352 KB
testcase_11 AC 40 ms
54,108 KB
testcase_12 AC 42 ms
54,984 KB
testcase_13 AC 41 ms
54,380 KB
testcase_14 AC 41 ms
53,668 KB
testcase_15 AC 42 ms
53,992 KB
testcase_16 AC 41 ms
54,184 KB
testcase_17 AC 40 ms
53,780 KB
testcase_18 AC 41 ms
54,512 KB
testcase_19 AC 41 ms
54,232 KB
testcase_20 AC 41 ms
54,792 KB
testcase_21 AC 41 ms
53,732 KB
testcase_22 AC 105 ms
101,344 KB
testcase_23 AC 67 ms
82,708 KB
testcase_24 AC 61 ms
79,216 KB
testcase_25 AC 109 ms
103,608 KB
testcase_26 AC 124 ms
107,484 KB
testcase_27 AC 116 ms
103,828 KB
testcase_28 AC 141 ms
107,916 KB
testcase_29 AC 81 ms
85,812 KB
testcase_30 AC 75 ms
83,328 KB
testcase_31 AC 137 ms
108,528 KB
testcase_32 AC 77 ms
85,132 KB
testcase_33 AC 57 ms
68,168 KB
testcase_34 AC 82 ms
86,804 KB
testcase_35 AC 132 ms
106,476 KB
testcase_36 AC 129 ms
97,972 KB
testcase_37 AC 71 ms
80,620 KB
testcase_38 AC 176 ms
111,088 KB
testcase_39 AC 55 ms
67,176 KB
testcase_40 AC 139 ms
101,080 KB
testcase_41 AC 87 ms
85,528 KB
testcase_42 AC 96 ms
88,100 KB
testcase_43 AC 57 ms
70,220 KB
testcase_44 AC 72 ms
80,196 KB
testcase_45 AC 177 ms
110,604 KB
testcase_46 AC 175 ms
109,692 KB
testcase_47 AC 174 ms
110,204 KB
testcase_48 AC 177 ms
109,608 KB
testcase_49 AC 176 ms
110,556 KB
testcase_50 AC 40 ms
54,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from copy import *

N = int(input())
A = list(map(int, input().split()))
D = sorted(deepcopy(A))
for i in range(N):
    if A[-1] == D[-1]:
        A.pop()
        D.pop()
        
if A == []:
    print(0)
    exit()
    
pre = A[0]
N = len(A)
L = [A[0]]
ans = []
for i in range(1, N):
    if A[i] >= pre:
        L.append(A[i])
    else:
        ans.append(L)
        L = [A[i]]
    pre = A[i]
        
if L:
    ans.append(L)
if len(ans) > 2:
    print(2)
elif ans[1] + ans[0] == D:
    print(1)
else:
    print(2)    
0