結果

問題 No.1425 Yet Another Cyclic Shifts Sorting
ユーザー yuusanlondonyuusanlondon
提出日時 2021-03-12 21:50:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 277 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 81,844 KB
実行使用メモリ 117,492 KB
最終ジャッジ日時 2024-10-14 12:11:51
合計ジャッジ時間 9,456 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 40 ms
51,712 KB
testcase_03 AC 38 ms
51,712 KB
testcase_04 AC 38 ms
51,960 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 37 ms
51,456 KB
testcase_08 WA -
testcase_09 AC 38 ms
51,584 KB
testcase_10 AC 37 ms
51,840 KB
testcase_11 WA -
testcase_12 AC 38 ms
51,456 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 108 ms
103,952 KB
testcase_23 AC 59 ms
77,696 KB
testcase_24 AC 58 ms
75,008 KB
testcase_25 AC 118 ms
104,576 KB
testcase_26 AC 134 ms
116,904 KB
testcase_27 AC 120 ms
104,064 KB
testcase_28 AC 140 ms
117,212 KB
testcase_29 AC 74 ms
88,644 KB
testcase_30 AC 62 ms
80,256 KB
testcase_31 AC 141 ms
116,864 KB
testcase_32 AC 73 ms
87,040 KB
testcase_33 AC 46 ms
63,488 KB
testcase_34 AC 79 ms
90,756 KB
testcase_35 AC 126 ms
104,320 KB
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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