結果

問題 No.1425 Yet Another Cyclic Shifts Sorting
ユーザー yuusanlondonyuusanlondon
提出日時 2021-03-12 21:48:44
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 249 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,024 KB
実行使用メモリ 117,404 KB
最終ジャッジ日時 2024-10-14 12:09:19
合計ジャッジ時間 9,688 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,936 KB
testcase_01 AC 37 ms
52,880 KB
testcase_02 AC 42 ms
53,408 KB
testcase_03 AC 38 ms
51,940 KB
testcase_04 WA -
testcase_05 AC 37 ms
52,768 KB
testcase_06 WA -
testcase_07 AC 37 ms
53,696 KB
testcase_08 AC 37 ms
51,776 KB
testcase_09 AC 37 ms
52,228 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 37 ms
52,012 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 38 ms
52,860 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 107 ms
103,736 KB
testcase_23 AC 59 ms
78,132 KB
testcase_24 AC 57 ms
75,676 KB
testcase_25 AC 117 ms
104,592 KB
testcase_26 AC 137 ms
117,068 KB
testcase_27 AC 119 ms
104,084 KB
testcase_28 AC 141 ms
117,024 KB
testcase_29 AC 75 ms
88,644 KB
testcase_30 AC 64 ms
80,636 KB
testcase_31 AC 138 ms
116,964 KB
testcase_32 AC 72 ms
86,896 KB
testcase_33 AC 47 ms
63,588 KB
testcase_34 AC 78 ms
90,824 KB
testcase_35 AC 126 ms
104,508 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 AC 37 ms
53,420 KB
権限があれば一括ダウンロードができます

ソースコード

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
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