結果

問題 No.1425 Yet Another Cyclic Shifts Sorting
ユーザー yuusanlondonyuusanlondon
提出日時 2021-03-12 22:44:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 343 bytes
コンパイル時間 367 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 117,332 KB
最終ジャッジ日時 2024-10-14 13:18:55
合計ジャッジ時間 9,603 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 37 ms
51,968 KB
testcase_03 AC 36 ms
51,968 KB
testcase_04 AC 38 ms
51,840 KB
testcase_05 AC 37 ms
51,840 KB
testcase_06 AC 37 ms
51,584 KB
testcase_07 WA -
testcase_08 AC 38 ms
51,712 KB
testcase_09 AC 39 ms
51,584 KB
testcase_10 AC 39 ms
51,712 KB
testcase_11 WA -
testcase_12 AC 37 ms
51,712 KB
testcase_13 WA -
testcase_14 AC 39 ms
51,840 KB
testcase_15 AC 39 ms
51,968 KB
testcase_16 AC 37 ms
51,712 KB
testcase_17 AC 36 ms
51,712 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 116 ms
103,552 KB
testcase_23 AC 65 ms
78,080 KB
testcase_24 AC 60 ms
75,480 KB
testcase_25 AC 125 ms
104,320 KB
testcase_26 AC 141 ms
116,904 KB
testcase_27 AC 123 ms
104,160 KB
testcase_28 AC 145 ms
117,008 KB
testcase_29 AC 77 ms
88,328 KB
testcase_30 AC 65 ms
81,280 KB
testcase_31 AC 143 ms
116,908 KB
testcase_32 AC 75 ms
86,940 KB
testcase_33 AC 50 ms
63,488 KB
testcase_34 AC 82 ms
90,592 KB
testcase_35 AC 130 ms
104,320 KB
testcase_36 AC 393 ms
107,136 KB
testcase_37 AC 109 ms
79,588 KB
testcase_38 AC 571 ms
117,208 KB
testcase_39 AC 59 ms
71,296 KB
testcase_40 AC 455 ms
102,792 KB
testcase_41 AC 194 ms
88,528 KB
testcase_42 AC 229 ms
92,924 KB
testcase_43 AC 74 ms
76,128 KB
testcase_44 AC 104 ms
78,756 KB
testcase_45 AC 598 ms
117,332 KB
testcase_46 AC 559 ms
117,128 KB
testcase_47 AC 564 ms
117,208 KB
testcase_48 AC 555 ms
117,224 KB
testcase_49 AC 566 ms
117,204 KB
testcase_50 AC 36 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
c=[]
for i in range(n):
  c.append((a[i],i))
c.sort()
b=[0]*n
for i in range(n):
  b[c[i][1]]=i
ans=0
pointer=0
if b[n-1]!=n-1:
  ans+=1
for i in range(n-2,-1,-1):
  if pointer>=i:
      break
  if b[i]+1!=b[i+1]:
    if b[i+1]==pointer:
      pointer+=1
    else:
      ans+=1
print(min(2,ans))
0