結果

問題 No.116 門松列(1)
ユーザー k0825
提出日時 2019-03-31 18:29:43
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 34 ms / 5,000 ms
コード長 174 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-06-25 01:52:14
合計ジャッジ時間 1,755 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input());ans=0
a=list(map(int,input().split()))
for i in range(0,n-2):
	t=a[i:i+3]
	u=sorted(t)
	if u[1] in [t[0],t[2]] and u[1] not in [u[0],u[2]]:
		ans+=1
print(ans)
0