답안 #224645

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
224645 2020-04-18T14:22:09 Z Amy313 쌀 창고 (IOI11_ricehub) C++14
0 / 100
200 ms 448 KB
#include "ricehub.h"
#include<bits/stdc++.h>
int besthub(int R, int L, int X[], long long B)
{
	int maxi= -1, c, a;
	long long cp = B;
	for(int i=0; i<L; i++)
	{
		c = 0;
		cp = B;
		for(int j=0; j<R; j++)
		{
			a = abs(X[i]-X[j]);
			if(a<=cp)
			{
				c++;
			}
			else
			{
				break;
			}
		}
		if(c>maxi)
		{
			maxi = c;
		}
	}
  return maxi;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 5 ms 256 KB Output is correct
2 Incorrect 5 ms 256 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 4 ms 384 KB Output is correct
2 Correct 5 ms 256 KB Output is correct
3 Correct 5 ms 256 KB Output is correct
4 Incorrect 5 ms 256 KB Output isn't correct
5 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 6 ms 384 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 200 ms 448 KB Output isn't correct
2 Halted 0 ms 0 KB -