結果

問題 No.1425 Yet Another Cyclic Shifts Sorting
ユーザー yuusanlondonyuusanlondon
提出日時 2021-03-12 23:02:47
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 547 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 112,728 KB
最終ジャッジ日時 2024-10-14 13:36:52
合計ジャッジ時間 5,159 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,136 KB
testcase_01 AC 39 ms
52,896 KB
testcase_02 AC 38 ms
52,188 KB
testcase_03 AC 39 ms
53,500 KB
testcase_04 AC 39 ms
52,484 KB
testcase_05 AC 39 ms
52,124 KB
testcase_06 AC 38 ms
52,720 KB
testcase_07 AC 39 ms
52,480 KB
testcase_08 AC 39 ms
52,336 KB
testcase_09 AC 38 ms
52,104 KB
testcase_10 AC 39 ms
52,200 KB
testcase_11 AC 39 ms
53,620 KB
testcase_12 AC 39 ms
52,428 KB
testcase_13 WA -
testcase_14 AC 39 ms
51,936 KB
testcase_15 AC 38 ms
52,708 KB
testcase_16 AC 38 ms
53,360 KB
testcase_17 AC 39 ms
52,332 KB
testcase_18 AC 38 ms
53,084 KB
testcase_19 AC 38 ms
52,696 KB
testcase_20 AC 39 ms
52,068 KB
testcase_21 AC 39 ms
52,220 KB
testcase_22 AC 78 ms
97,860 KB
testcase_23 AC 50 ms
69,356 KB
testcase_24 AC 48 ms
67,416 KB
testcase_25 AC 81 ms
101,148 KB
testcase_26 AC 96 ms
101,512 KB
testcase_27 AC 101 ms
104,156 KB
testcase_28 AC 116 ms
112,576 KB
testcase_29 AC 68 ms
82,596 KB
testcase_30 AC 61 ms
76,112 KB
testcase_31 AC 116 ms
112,728 KB
testcase_32 AC 64 ms
78,876 KB
testcase_33 AC 50 ms
64,304 KB
testcase_34 AC 69 ms
83,852 KB
testcase_35 AC 102 ms
104,352 KB
testcase_36 AC 96 ms
106,876 KB
testcase_37 AC 57 ms
70,708 KB
testcase_38 AC 119 ms
112,652 KB
testcase_39 AC 50 ms
64,768 KB
testcase_40 AC 98 ms
101,064 KB
testcase_41 AC 67 ms
81,884 KB
testcase_42 AC 73 ms
86,276 KB
testcase_43 AC 50 ms
65,676 KB
testcase_44 AC 54 ms
70,620 KB
testcase_45 AC 119 ms
112,584 KB
testcase_46 AC 118 ms
112,704 KB
testcase_47 AC 120 ms
112,688 KB
testcase_48 AC 119 ms
112,580 KB
testcase_49 AC 118 ms
112,696 KB
testcase_50 AC 38 ms
52,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
flag=0
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-1,-1,-1):
    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