結果

問題 No.1425 Yet Another Cyclic Shifts Sorting
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-03-15 12:23:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 509 bytes
コンパイル時間 402 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 129,492 KB
最終ジャッジ日時 2024-11-07 00:57:51
合計ジャッジ時間 5,593 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,764 KB
testcase_01 AC 39 ms
52,532 KB
testcase_02 AC 40 ms
52,632 KB
testcase_03 AC 38 ms
53,192 KB
testcase_04 AC 38 ms
53,496 KB
testcase_05 AC 38 ms
52,288 KB
testcase_06 AC 38 ms
52,272 KB
testcase_07 AC 38 ms
52,388 KB
testcase_08 WA -
testcase_09 AC 38 ms
52,560 KB
testcase_10 AC 38 ms
52,556 KB
testcase_11 AC 38 ms
53,172 KB
testcase_12 AC 37 ms
51,680 KB
testcase_13 AC 38 ms
52,992 KB
testcase_14 AC 38 ms
53,368 KB
testcase_15 WA -
testcase_16 AC 38 ms
53,008 KB
testcase_17 AC 37 ms
52,876 KB
testcase_18 AC 38 ms
53,508 KB
testcase_19 AC 38 ms
53,064 KB
testcase_20 AC 38 ms
52,416 KB
testcase_21 AC 40 ms
52,832 KB
testcase_22 AC 86 ms
100,520 KB
testcase_23 AC 53 ms
70,356 KB
testcase_24 AC 53 ms
67,648 KB
testcase_25 AC 86 ms
103,580 KB
testcase_26 AC 96 ms
101,624 KB
testcase_27 AC 115 ms
105,432 KB
testcase_28 AC 135 ms
129,404 KB
testcase_29 AC 74 ms
89,284 KB
testcase_30 AC 66 ms
79,864 KB
testcase_31 AC 131 ms
129,116 KB
testcase_32 AC 67 ms
86,672 KB
testcase_33 AC 51 ms
65,092 KB
testcase_34 AC 72 ms
91,440 KB
testcase_35 AC 110 ms
104,912 KB
testcase_36 AC 92 ms
116,660 KB
testcase_37 AC 53 ms
71,776 KB
testcase_38 AC 127 ms
128,968 KB
testcase_39 AC 47 ms
62,432 KB
testcase_40 AC 101 ms
113,704 KB
testcase_41 AC 66 ms
85,864 KB
testcase_42 AC 72 ms
91,904 KB
testcase_43 AC 49 ms
64,764 KB
testcase_44 AC 53 ms
70,480 KB
testcase_45 AC 125 ms
129,104 KB
testcase_46 AC 124 ms
129,208 KB
testcase_47 AC 125 ms
129,492 KB
testcase_48 AC 127 ms
129,476 KB
testcase_49 AC 131 ms
129,100 KB
testcase_50 AC 38 ms
53,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main(n,a):
  if all(a[i]<=a[i+1] for i in range(n-1)):return 0
  ma=[a[0]]
  for x in a[1:]:
    ma.append(max(ma[-1],x))
  abl=[0]*n
  abl[-1]=1
  for i in reversed(range(n-1)):
    if a[i]<=a[i+1]:
      abl[i]=1
    else:
      break
  gen=[0]
  for i in range(n-1):
    if a[i]>a[i+1]:
      gen.append(gen[-1]+1)
    else:
      gen.append(gen[-1])
  for i in range(n):
    if gen[i]==1 and a[i]<=a[0] and abl[i]==1:return 1
  return 2
n=int(input())
a=list(map(int,input().split()))
print(main(n,a))
0