結果

問題 No.1425 Yet Another Cyclic Shifts Sorting
ユーザー yuusanlondonyuusanlondon
提出日時 2021-03-12 22:53:05
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 532 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 113,192 KB
最終ジャッジ日時 2024-10-14 13:27:15
合計ジャッジ時間 5,148 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 AC 36 ms
51,968 KB
testcase_05 AC 37 ms
51,840 KB
testcase_06 AC 36 ms
51,840 KB
testcase_07 AC 37 ms
52,096 KB
testcase_08 AC 36 ms
52,064 KB
testcase_09 AC 36 ms
51,712 KB
testcase_10 AC 38 ms
51,840 KB
testcase_11 AC 35 ms
52,224 KB
testcase_12 AC 35 ms
51,840 KB
testcase_13 WA -
testcase_14 AC 36 ms
51,712 KB
testcase_15 AC 37 ms
51,968 KB
testcase_16 AC 37 ms
51,584 KB
testcase_17 AC 38 ms
52,352 KB
testcase_18 WA -
testcase_19 AC 38 ms
51,840 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 AC 100 ms
103,936 KB
testcase_28 AC 112 ms
112,876 KB
testcase_29 AC 67 ms
80,896 KB
testcase_30 AC 62 ms
75,520 KB
testcase_31 AC 115 ms
112,380 KB
testcase_32 AC 65 ms
79,104 KB
testcase_33 AC 49 ms
63,232 KB
testcase_34 AC 70 ms
83,620 KB
testcase_35 AC 103 ms
104,192 KB
testcase_36 AC 96 ms
107,352 KB
testcase_37 AC 56 ms
70,016 KB
testcase_38 AC 117 ms
112,628 KB
testcase_39 AC 49 ms
63,744 KB
testcase_40 AC 98 ms
101,088 KB
testcase_41 AC 67 ms
81,024 KB
testcase_42 AC 72 ms
86,400 KB
testcase_43 AC 51 ms
65,024 KB
testcase_44 AC 55 ms
69,376 KB
testcase_45 AC 118 ms
112,676 KB
testcase_46 AC 119 ms
112,488 KB
testcase_47 AC 120 ms
112,816 KB
testcase_48 AC 120 ms
113,192 KB
testcase_49 AC 116 ms
112,668 KB
testcase_50 AC 36 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
for i in range(n-1):
    if a[i+1]<a[i]:
        flag=1
if not flag:
    print(0)
    exit()
k=min(a)
b=[]
for i in range(n):
    if a[i]==k:
        j=i+1
        b=[a[i]]
        while j<n and a[j]<=a[0]:
            b.append(a[j])
            j+=1
        for k in range(i):
            b.append(a[k])
        for k in range(j,n):
            b.append(a[k])
        break
flag=0
for i in range(n-1):
    if b[i+1]<b[i]:
        flag=1
if not flag:
    print(1)
    exit() 
print(2)
0