結果

問題 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 29 ms
10,496 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 28 ms
10,624 KB
testcase_09 AC 29 ms
10,624 KB
testcase_10 AC 29 ms
10,624 KB
testcase_11 AC 29 ms
10,752 KB
testcase_12 AC 29 ms
10,624 KB
testcase_13 AC 28 ms
10,624 KB
testcase_14 AC 28 ms
10,496 KB
testcase_15 AC 28 ms
10,624 KB
testcase_16 AC 29 ms
10,624 KB
testcase_17 AC 29 ms
10,752 KB
testcase_18 AC 29 ms
10,624 KB
testcase_19 AC 29 ms
10,624 KB
testcase_20 AC 29 ms
10,624 KB
testcase_21 AC 29 ms
10,624 KB
testcase_22 AC 111 ms
27,740 KB
testcase_23 AC 49 ms
14,808 KB
testcase_24 AC 46 ms
14,268 KB
testcase_25 AC 117 ms
28,796 KB
testcase_26 AC 132 ms
32,608 KB
testcase_27 AC 123 ms
29,264 KB
testcase_28 AC 135 ms
32,476 KB
testcase_29 AC 68 ms
17,208 KB
testcase_30 AC 53 ms
15,104 KB
testcase_31 AC 139 ms
32,152 KB
testcase_32 AC 60 ms
16,788 KB
testcase_33 AC 34 ms
11,392 KB
testcase_34 AC 67 ms
17,948 KB
testcase_35 AC 133 ms
30,940 KB
testcase_36 AC 111 ms
25,156 KB
testcase_37 AC 44 ms
13,556 KB
testcase_38 AC 149 ms
32,268 KB
testcase_39 AC 31 ms
11,392 KB
testcase_40 AC 128 ms
28,368 KB
testcase_41 AC 66 ms
17,340 KB
testcase_42 AC 75 ms
19,056 KB
testcase_43 AC 36 ms
11,776 KB
testcase_44 AC 46 ms
13,432 KB
testcase_45 AC 153 ms
32,532 KB
testcase_46 AC 150 ms
32,396 KB
testcase_47 AC 153 ms
32,532 KB
testcase_48 AC 152 ms
32,400 KB
testcase_49 AC 154 ms
32,532 KB
testcase_50 AC 29 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

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