답안 #445024

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
445024 2021-07-16T09:26:25 Z fuad27 Fancy Fence (CEOI20_fancyfence) C++14
12 / 100
5 ms 304 KB
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
#define mod 1000000007
#define int long long
long long bin(long long x){
	x %= mod;
    return ((x*(x+1))/2)%mod;
}
long long rec(long long x, long long y){
    return (bin(x)*bin(y))%mod;
}

int32_t main () {
	int n;
	cin >> n;
	ll ans = 0;
	vector<int> h;
	for(int i = 0;i<n;i++) {
		int hi;
		cin >> hi;
		h.push_back(hi);
	}
	for(int i = 0;i<n;i++) {
		int w;cin>>w;
	}
	for(int i = 0;i<n;i++) {
		int MIN = h[i];
		for(int j = i+1;j<=n;j++) {
			MIN = min(MIN, h[j - 1]);
			ans += bin(MIN);
			ans%=mod;
		}
	}
	cout<<ans;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 204 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 204 KB Output is correct
2 Correct 0 ms 204 KB Output is correct
3 Correct 1 ms 204 KB Output is correct
4 Correct 0 ms 204 KB Output is correct
5 Correct 1 ms 204 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 204 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 5 ms 304 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 204 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 204 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 204 KB Output isn't correct
2 Halted 0 ms 0 KB -