結果

問題 No.116 門松列(1)
ユーザー pypypymipypypymi
提出日時 2022-02-20 21:04:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 34 ms / 5,000 ms
コード長 238 bytes
コンパイル時間 385 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 53,492 KB
最終ジャッジ日時 2024-06-29 10:58:22
合計ジャッジ時間 1,802 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,004 KB
testcase_01 AC 34 ms
52,684 KB
testcase_02 AC 33 ms
52,632 KB
testcase_03 AC 34 ms
52,136 KB
testcase_04 AC 34 ms
52,480 KB
testcase_05 AC 33 ms
52,776 KB
testcase_06 AC 31 ms
52,488 KB
testcase_07 AC 33 ms
52,748 KB
testcase_08 AC 32 ms
52,944 KB
testcase_09 AC 33 ms
51,816 KB
testcase_10 AC 34 ms
52,088 KB
testcase_11 AC 33 ms
52,920 KB
testcase_12 AC 33 ms
52,556 KB
testcase_13 AC 33 ms
52,056 KB
testcase_14 AC 30 ms
52,580 KB
testcase_15 AC 31 ms
52,340 KB
testcase_16 AC 31 ms
52,468 KB
testcase_17 AC 31 ms
51,872 KB
testcase_18 AC 31 ms
53,052 KB
testcase_19 AC 31 ms
51,756 KB
testcase_20 AC 31 ms
53,052 KB
testcase_21 AC 31 ms
53,276 KB
testcase_22 AC 34 ms
52,628 KB
testcase_23 AC 33 ms
53,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
array = list(map(int,input().split()))
count=0
for i in range(0,n-2):
    v_i = array[i:i+3]
    v = list(sorted(v_i))
    if len(list(set(v)))==3 and (v[1]==v_i[0] or v[1]==v_i[2]):
        count+=1
print(count)    
    
0