結果
| 問題 |
No.116 門松列(1)
|
| コンテスト | |
| ユーザー |
tktk_snsn
|
| 提出日時 | 2021-01-02 05:54:04 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 31 ms / 5,000 ms |
| コード長 | 295 bytes |
| コンパイル時間 | 133 ms |
| コンパイル使用メモリ | 12,800 KB |
| 実行使用メモリ | 10,880 KB |
| 最終ジャッジ日時 | 2024-10-11 19:49:13 |
| 合計ジャッジ時間 | 1,743 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 21 |
ソースコード
N = int(input())
A = list(map(int, input().split()))
def kado(a, b, c):
if len(set([a, b, c])) != 3:
return False
m = sorted([a, b, c])[1]
if a == m or c == m:
return True
return False
ans = 0
for i in range(N - 2):
ans += int(kado(*A[i:i+3]))
print(ans)
tktk_snsn