Description 给定一个正整数序列 \(a_1,a_2,\cdots,a_n\),求 \[ \sum_{i=1}^n\sum_{j=i}^n(j-i+1)\min(a_i,a_{i+1},\cdots,a_j)\max(a_i,a_{i+1},\cdots,a_j) \] Input 第 \(1\) 行,一个整数 \(n\): 第 \(2\dots n+1\) 行,每行一个整数表示序列 \(a\). Output 输出答案对 \(10^9\) 取模后的结果. Sample Input 4…