結果

問題 No.1425 Yet Another Cyclic Shifts Sorting
ユーザー titia
提出日時 2021-03-12 21:58:18
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 162 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,624 KB
最終ジャッジ日時 2024-10-14 12:21:43
合計ジャッジ時間 5,305 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 28 WA * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N=int(input())
A=list(map(int,input().split()))

ANS=0
for i in range(1,N):
    if A[i-1]>A[i]:
        ANS+=1

print(ANS)
0