結果

問題 No.1544 [Cherry 2nd Tune C] Synchroscope
ユーザー pengin_2000pengin_2000
提出日時 2021-08-29 01:36:01
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 1,166 bytes
コンパイル時間 2,006 ms
コンパイル使用メモリ 30,976 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-22 01:23:55
合計ジャッジ時間 2,555 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 16 ms
5,248 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 3 ms
5,248 KB
testcase_10 AC 15 ms
5,248 KB
testcase_11 WA -
testcase_12 AC 8 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 20 ms
5,248 KB
testcase_15 AC 23 ms
5,248 KB
testcase_16 AC 8 ms
5,248 KB
testcase_17 AC 5 ms
5,248 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 20 ms
5,248 KB
testcase_21 WA -
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 31 ms
5,248 KB
testcase_24 AC 31 ms
5,248 KB
testcase_25 AC 31 ms
5,248 KB
testcase_26 AC 31 ms
5,248 KB
testcase_27 AC 31 ms
5,248 KB
testcase_28 AC 30 ms
5,248 KB
testcase_29 AC 31 ms
5,248 KB
testcase_30 AC 31 ms
5,248 KB
testcase_31 AC 31 ms
5,248 KB
testcase_32 AC 31 ms
5,248 KB
testcase_33 AC 150 ms
5,248 KB
testcase_34 AC 1 ms
5,248 KB
testcase_35 AC 1 ms
5,248 KB
testcase_36 AC 2 ms
5,248 KB
testcase_37 AC 1 ms
5,248 KB
testcase_38 WA -
testcase_39 AC 31 ms
5,248 KB
testcase_40 WA -
testcase_41 AC 30 ms
5,248 KB
testcase_42 AC 30 ms
5,248 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 30 ms
5,248 KB
testcase_46 AC 29 ms
5,248 KB
testcase_47 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<stdio.h>
long long int gcd(long long int a, long long int b)
{
	long long int r = a % b;
	while (r > 0)
	{
		a = b;
		b = r;
		r = a % b;
	}
	return b;
}
long long int eu(long long int a, long long int b)
{
	if (b == 1)
		return 0;
	else
		return (1 - b * eu(b, a % b)) / (a % b);
}
int main()
{
	long long int n, m;
	scanf("%lld %lld", &n, &m);
	long long int i, j;
	int a[5003], b[5003];
	for (i = 0; i < n; i++)
		scanf("%d", &a[i]);
	for (j = 0; j < m; j++)
		scanf("%d", &b[j]);
	long long int ans = -2, g = gcd(n, m);
	long long int x, y;
	for (i = 0; i < n; i++)
	{
		for (j = 0; j < m; j++)
		{
			if (a[i] != b[j])
				continue;
			if ((j - i) % g != 0)
				continue;
			x = eu(n / g, m / g);
			y = (1 - n / g * x) / (m / g);
			y *= -1;
			x *= (j - i) / g;
			y *= (j - i) / g;
			if (x < 0)
			{
				y += n / g * (-x / (m / g));
				x %= m / g;
				if (x < 0)
				{
					x += m / g;
					y += n / g;
				}
			}
			if (y < 0)
			{
				x += m / g * (-y / (n / g));
				y %= n / g;
				if (y < 0)
				{
					x += m / g;
					y += n / g;
				}
			}
			if (ans<0 || ans>x * n + i)
				ans = x * n + i;
		}
	}
	printf("%lld\n", ans + 1);
	return 0;
}
0