結果
問題 | No.116 門松列(1) |
ユーザー |
|
提出日時 | 2024-05-13 10:22:00 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 33 ms / 5,000 ms |
コード長 | 243 bytes |
コンパイル時間 | 120 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-12-20 09:23:22 |
合計ジャッジ時間 | 1,938 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 21 |
ソースコード
n = int(input())s = list(map(int, input().split()))cnt = 0for i in range(n-2):a = s[i]b = s[i+1]c = s[i+2]if a < b and b > c and a != c:cnt += 1elif a > b and b < c and a != c:cnt += 1print(cnt)