結果

問題 No.1201 お菓子配り-4
ユーザー yudedakoyudedako
提出日時 2020-09-07 13:59:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,161 ms / 4,000 ms
コード長 893 bytes
コンパイル時間 1,420 ms
コンパイル使用メモリ 112,024 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-06 23:43:18
合計ジャッジ時間 15,344 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
5,248 KB
testcase_01 AC 477 ms
5,376 KB
testcase_02 AC 679 ms
5,376 KB
testcase_03 AC 353 ms
5,376 KB
testcase_04 AC 164 ms
5,376 KB
testcase_05 AC 409 ms
5,376 KB
testcase_06 AC 67 ms
5,376 KB
testcase_07 AC 196 ms
5,376 KB
testcase_08 AC 513 ms
5,376 KB
testcase_09 AC 386 ms
5,376 KB
testcase_10 AC 4 ms
5,376 KB
testcase_11 AC 96 ms
5,376 KB
testcase_12 AC 786 ms
5,376 KB
testcase_13 AC 23 ms
5,376 KB
testcase_14 AC 13 ms
5,376 KB
testcase_15 AC 628 ms
5,376 KB
testcase_16 AC 193 ms
5,376 KB
testcase_17 AC 245 ms
5,376 KB
testcase_18 AC 39 ms
5,376 KB
testcase_19 AC 38 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 1 ms
5,376 KB
testcase_30 AC 974 ms
5,376 KB
testcase_31 AC 1,011 ms
5,376 KB
testcase_32 AC 993 ms
5,376 KB
testcase_33 AC 1,023 ms
5,376 KB
testcase_34 AC 990 ms
5,376 KB
testcase_35 AC 2,161 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cmath>
#include <vector>
#include <iostream>
#include <algorithm>
#include <set>
#include <iomanip>
#include <numeric>
#include <queue>
#include <string>
#include <map>
#include <fstream>
#include <cassert>
#include <stack>
#include <climits>
long long int gcd(const long long int a, const long long int b) {
	return b == 0 ? a : gcd(b, a % b);
}
int main() {
	std::cin.tie(nullptr); std::cin.sync_with_stdio(false);
	int n, m; std::cin >> n >> m;
	std::vector<long long int> a_num(n), b_num(m);
	for (auto& a : a_num) std::cin >> a;
	for (auto& b : b_num) std::cin >> b;
	constexpr long long int MOD = 1000000007;
	long long int result{ 0 };
	for (const auto a : a_num) {
		for (const auto b : b_num) {
			const auto g = gcd(a, b);
			const auto bd = b / g;
			result = (result + ((b + 1) * a % MOD - (bd - 1) * g % MOD)) % MOD;
		}
	}
	std::cout << (result + MOD) % MOD << '\n';
}
0