結果

問題 No.116 門松列(1)
ユーザー あかりきあかりき
提出日時 2021-02-09 21:42:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 36 ms / 5,000 ms
コード長 197 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 81,860 KB
実行使用メモリ 53,700 KB
最終ジャッジ日時 2024-07-07 03:40:27
合計ジャッジ時間 1,821 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
52,556 KB
testcase_01 AC 32 ms
53,052 KB
testcase_02 AC 32 ms
52,500 KB
testcase_03 AC 33 ms
53,068 KB
testcase_04 AC 31 ms
52,260 KB
testcase_05 AC 32 ms
52,696 KB
testcase_06 AC 32 ms
53,440 KB
testcase_07 AC 33 ms
52,364 KB
testcase_08 AC 33 ms
53,200 KB
testcase_09 AC 33 ms
53,252 KB
testcase_10 AC 33 ms
53,124 KB
testcase_11 AC 36 ms
52,304 KB
testcase_12 AC 32 ms
52,192 KB
testcase_13 AC 32 ms
53,700 KB
testcase_14 AC 33 ms
51,956 KB
testcase_15 AC 31 ms
53,340 KB
testcase_16 AC 32 ms
52,504 KB
testcase_17 AC 31 ms
53,140 KB
testcase_18 AC 32 ms
53,308 KB
testcase_19 AC 31 ms
52,252 KB
testcase_20 AC 32 ms
53,620 KB
testcase_21 AC 31 ms
52,728 KB
testcase_22 AC 32 ms
51,692 KB
testcase_23 AC 31 ms
52,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
ct=0
for i in range(n-2):
  x=a[i];y=a[i+1];z=a[i+2]
  l=[x,y,z]
  l.sort()
  if x!=y and y!=z and z!=x and (l[1]==x or l[1]==z):
    ct+=1
print(ct)
0