結果
問題 |
No.116 門松列(1)
|
ユーザー |
![]() |
提出日時 | 2018-11-30 10:01:31 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 33 ms / 5,000 ms |
コード長 | 370 bytes |
コンパイル時間 | 188 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-06-25 01:46:44 |
合計ジャッジ時間 | 1,777 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 21 |
ソースコード
N = int(input()) f = input() s_f = f.split() length = [int(v) for v in s_f] i = 0 for v in range(0, N - 2): a = {length[v],length[v + 1],length[v + 2]} if len(a) == 3: if length[v] < length[v + 1] and length[v + 1] > length[v + 2]: i += 1 elif length[v] > length[v + 1] and length[v + 1] <length[v + 2]: i += 1 print(i)