結果

問題 No.1201 お菓子配り-4
ユーザー Sooh317Sooh317
提出日時 2020-09-04 17:08:37
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,049 ms / 4,000 ms
コード長 609 bytes
コンパイル時間 1,334 ms
コンパイル使用メモリ 169,320 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-04 17:11:51
合計ジャッジ時間 14,269 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
5,248 KB
testcase_01 AC 451 ms
5,376 KB
testcase_02 AC 647 ms
5,376 KB
testcase_03 AC 317 ms
5,376 KB
testcase_04 AC 154 ms
5,376 KB
testcase_05 AC 382 ms
5,376 KB
testcase_06 AC 61 ms
5,376 KB
testcase_07 AC 174 ms
5,376 KB
testcase_08 AC 483 ms
5,376 KB
testcase_09 AC 358 ms
5,376 KB
testcase_10 AC 4 ms
5,376 KB
testcase_11 AC 92 ms
5,376 KB
testcase_12 AC 743 ms
5,376 KB
testcase_13 AC 22 ms
5,376 KB
testcase_14 AC 11 ms
5,376 KB
testcase_15 AC 578 ms
5,376 KB
testcase_16 AC 179 ms
5,376 KB
testcase_17 AC 238 ms
5,376 KB
testcase_18 AC 38 ms
5,376 KB
testcase_19 AC 36 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 2 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 955 ms
5,376 KB
testcase_31 AC 932 ms
5,376 KB
testcase_32 AC 928 ms
5,376 KB
testcase_33 AC 937 ms
5,376 KB
testcase_34 AC 930 ms
5,376 KB
testcase_35 AC 2,049 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

const ll mod = 1000000007;
const int INF = 1001001001;

ll gcd(ll a, ll b){return (b == 0 ? a : gcd(b, a % b));}
ll lcm(ll a, ll b){return a / gcd(a, b) * b;}

void solve() {
    int n, m;
    std::cin >> n >> m;

    std::vector<ll> xs(n), ys(m);
    for (auto& x : xs) std::cin >> x;
    for (auto& y : ys) std::cin >> y;

    ll ans = 0;
    for (ll a : xs) {
        for (ll b : ys) {
            ans += a * b % mod + a - b + gcd(a, b);
            ans %= mod;
        }
    }

    std::cout << ans << "\n";
}
int main(){
    solve();
}
0