답안 #308321

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
308321 2020-09-30T22:56:40 Z luciocf Strongbox (POI11_sej) C++14
0 / 100
2 ms 512 KB
#include <bits/stdc++.h>

using namespace std;

typedef long long ll;

const int maxn = 1e3+10;

bool mark[maxn];

ll a[maxn];

int main(void)
{
	ll n;
	int k;
	scanf("%lld %d", &n, &k);

	for (int i = 1; i <= k; i++)
		scanf("%lld", &a[i]);

	ll ans = a[k];

	for (ll i = 1; i*i <= a[k]; i++)
	{
		if (a[k]%i) continue;

		ll d = i;

		memset(mark, 0, sizeof mark);

		ll at = 0;
		bool ok = 1;

		while (!mark[at])
		{
			mark[at] = 1;

			for (int j = 1; j < k; j++)
				if (a[j] == at)
					ok = 0;

			at = (at + d)%n;
		}

		if (ok) ans = min(ans, d);

		memset(mark, 0, sizeof mark);

		d = a[k]/i;
		at = 0;
		ok = 1;

		while (!mark[at])
		{
			mark[at] = 1;

			for (int j = 1; j < k; j++)
				if (a[j] == at)
					ok = 0;

			at = (at + d)%n;
		}

		if (ok) ans = min(ans, d);
	}

	printf("%lld\n", n/ans);
}

Compilation message

sej.cpp: In function 'int main()':
sej.cpp:17:7: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   17 |  scanf("%lld %d", &n, &k);
      |  ~~~~~^~~~~~~~~~~~~~~~~~~
sej.cpp:20:8: warning: ignoring return value of 'int scanf(const char*, ...)', declared with attribute warn_unused_result [-Wunused-result]
   20 |   scanf("%lld", &a[i]);
      |   ~~~~~^~~~~~~~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 256 KB Output is correct
2 Correct 0 ms 256 KB Output is correct
3 Runtime error 1 ms 384 KB Execution killed with signal 8 (could be triggered by violating memory limits)
4 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 384 KB Execution killed with signal 8 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 384 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 384 KB Execution killed with signal 8 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 384 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 2 ms 512 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 384 KB Execution killed with signal 8 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 1 ms 384 KB Execution killed with signal 8 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 2 ms 384 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 2 ms 384 KB Execution killed with signal 11 (could be triggered by violating memory limits)
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1 ms 256 KB Time limit exceeded (wall clock)
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 2 ms 256 KB Time limit exceeded (wall clock)
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 2 ms 256 KB Time limit exceeded (wall clock)
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1 ms 256 KB Time limit exceeded (wall clock)
2 Halted 0 ms 0 KB -