답안 #498688

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
498688 2021-12-26T07:07:34 Z Abdurahmon Hedgehog Daniyar and Algorithms (IZhO19_sortbooks) C++14
0 / 100
3000 ms 11264 KB
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
ll t[1000000];
void solve()
{
	int l,r,k;ll m=0;
	cin>>l>>r>>k;
	l--;r--;
	for(int c=l;c<=r;c++)
	{
		if(t[c]<m)
		{
		if(t[c]+m>k&&c>0)
		{
			cout<<"0\n";return;
		}
			m=t[c];
		}
	}
	cout<<"1\n";
}
int main()
{
ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL);
int n,m;
cin>>n>>m;
for(int c=0;c<n;c++)
{
	cin>>t[c];
}
while(m--)
{
	solve();
}
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 204 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 204 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 3013 ms 11264 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1858 ms 3392 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 204 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 204 KB Output isn't correct
2 Halted 0 ms 0 KB -