結果

問題 No.990 N×Mマス計算(Kの倍数)
コンテスト
ユーザー MarcusAureliusAntoninus
提出日時 2020-02-14 22:04:05
言語 C++17
(gcc 15.2.0 + boost 1.89.0)
コンパイル:
g++-15 -O2 -lm -std=c++17 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
TLE  
実行時間 -
コード長 1,019 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 1,369 ms
コンパイル使用メモリ 220,908 KB
実行使用メモリ 117,632 KB
最終ジャッジ日時 2026-06-08 19:01:46
合計ジャッジ時間 5,204 ms
ジャッジサーバーID
(参考情報)
judge3_0 / judge1_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 2 TLE * 1 -- * 16
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include <bits/stdc++.h>

int64_t calcGCD(int64_t a, int64_t b)
{
	while (a)
	{
		b %= a;
		std::swap(a, b);
	}
	return b;
}

int main()
{
	int N, M;
	int64_t K;
	char op;
	scanf("%d%d%lld %c", &N, &M, &K, &op);
	std::vector<int64_t> A(N), B(M);
	for (auto& e: B)
		scanf("%lld", &e);
	for (auto& e: A)
		scanf("%lld", &e);

	int64_t ans{};
	if (op == '+')
	{
		std::map<int64_t, int64_t> rest_a, rest_b;
		for (auto& e: A)
			rest_a[e % K]++;
		for (auto& e: B)
			rest_b[e % K]++;
		for (auto& e: rest_a)
			ans += e.second * rest_b[K - e.first];
		ans += rest_a[0] * rest_b[0];
	}
	else
	{
		std::map<int64_t, int64_t> gcd_a, gcd_b;
		for (auto& e: A)
			gcd_a[calcGCD(e, K)]++;
		for (auto& e: B)
			gcd_b[calcGCD(e, K)]++;

		for (int64_t i{1}; i * i <= K; i++)
			if (K % i == 0)
				gcd_b[i] += 0;
		for (auto& e: gcd_b)
			for (int64_t i{2 * e.first}; i <= K; i += e.first)
				gcd_b[e.first] += gcd_b[i];

		for (auto& e: gcd_a)
			ans += e.second * gcd_b[K / e.first];
	}
	printf("%lld\n", ans);

	return 0;
}
0