結果

問題 No.1425 Yet Another Cyclic Shifts Sorting
ユーザー rlangevinrlangevin
提出日時 2023-10-25 20:43:08
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 525 bytes
コンパイル時間 552 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 112,180 KB
最終ジャッジ日時 2024-09-25 05:54:41
合計ジャッジ時間 7,578 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,648 KB
testcase_01 AC 41 ms
54,444 KB
testcase_02 AC 41 ms
54,772 KB
testcase_03 AC 41 ms
53,884 KB
testcase_04 WA -
testcase_05 RE -
testcase_06 RE -
testcase_07 AC 41 ms
53,292 KB
testcase_08 AC 41 ms
53,624 KB
testcase_09 WA -
testcase_10 AC 41 ms
54,460 KB
testcase_11 AC 41 ms
53,408 KB
testcase_12 AC 41 ms
53,840 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 WA -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 AC 43 ms
53,572 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 AC 108 ms
100,948 KB
testcase_23 AC 69 ms
83,032 KB
testcase_24 AC 63 ms
79,112 KB
testcase_25 AC 110 ms
103,700 KB
testcase_26 AC 127 ms
107,348 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 134 ms
97,836 KB
testcase_37 AC 74 ms
80,372 KB
testcase_38 AC 181 ms
110,968 KB
testcase_39 AC 55 ms
67,100 KB
testcase_40 AC 145 ms
100,692 KB
testcase_41 AC 90 ms
85,600 KB
testcase_42 AC 100 ms
88,104 KB
testcase_43 AC 59 ms
70,420 KB
testcase_44 AC 73 ms
80,488 KB
testcase_45 AC 185 ms
110,000 KB
testcase_46 AC 180 ms
109,372 KB
testcase_47 AC 181 ms
112,180 KB
testcase_48 AC 168 ms
107,288 KB
testcase_49 AC 167 ms
107,356 KB
testcase_50 AC 42 ms
53,624 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]]
        
if L:
    ans.append(L)
    
if len(ans) > 2:
    print(2)
elif sorted(ans[1] + ans[0]) == sorted(A):
    print(1)
else:
    print(2)    
0