結果

問題 No.1425 Yet Another Cyclic Shifts Sorting
ユーザー SHIJOUSHIJOU
提出日時 2021-04-12 12:45:38
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 154 ms / 2,000 ms
コード長 378 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 32,608 KB
最終ジャッジ日時 2024-06-28 10:30:56
合計ジャッジ時間 5,407 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 48
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))
n += 1
a.append(1000000001)
cnt = 0
cid = -1
for i in range(n-1):
  if a[i] > a[i+1]:
    cnt += 1
    cid = i
if cnt == 0:
  print(0)
elif cnt == 1:
  done = False
  for i in range(cid, n-1):
    if a[i+1] >= a[cid] and a[0] >= a[i]:
      done = True
      print(1)
      break
  if not done:
    print(2)
else :
  print(2)
0