結果
問題 | No.1201 お菓子配り-4 |
ユーザー | cn_449 |
提出日時 | 2020-08-28 23:35:55 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 481 ms / 4,000 ms |
コード長 | 1,985 bytes |
コンパイル時間 | 1,459 ms |
コンパイル使用メモリ | 132,628 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-14 02:12:27 |
合計ジャッジ時間 | 7,519 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 20 ms
6,816 KB |
testcase_01 | AC | 232 ms
6,816 KB |
testcase_02 | AC | 335 ms
6,820 KB |
testcase_03 | AC | 162 ms
6,816 KB |
testcase_04 | AC | 81 ms
6,816 KB |
testcase_05 | AC | 198 ms
6,820 KB |
testcase_06 | AC | 32 ms
6,816 KB |
testcase_07 | AC | 91 ms
6,820 KB |
testcase_08 | AC | 248 ms
6,820 KB |
testcase_09 | AC | 183 ms
6,816 KB |
testcase_10 | AC | 4 ms
6,820 KB |
testcase_11 | AC | 49 ms
6,816 KB |
testcase_12 | AC | 380 ms
6,816 KB |
testcase_13 | AC | 12 ms
6,816 KB |
testcase_14 | AC | 7 ms
6,820 KB |
testcase_15 | AC | 298 ms
6,816 KB |
testcase_16 | AC | 92 ms
6,820 KB |
testcase_17 | AC | 119 ms
6,816 KB |
testcase_18 | AC | 21 ms
6,816 KB |
testcase_19 | AC | 20 ms
6,820 KB |
testcase_20 | AC | 2 ms
6,816 KB |
testcase_21 | AC | 2 ms
6,816 KB |
testcase_22 | AC | 2 ms
6,820 KB |
testcase_23 | AC | 2 ms
6,816 KB |
testcase_24 | AC | 2 ms
6,816 KB |
testcase_25 | AC | 2 ms
6,816 KB |
testcase_26 | AC | 2 ms
6,816 KB |
testcase_27 | AC | 2 ms
6,820 KB |
testcase_28 | AC | 2 ms
6,820 KB |
testcase_29 | AC | 2 ms
6,816 KB |
testcase_30 | AC | 479 ms
6,816 KB |
testcase_31 | AC | 479 ms
6,816 KB |
testcase_32 | AC | 480 ms
6,816 KB |
testcase_33 | AC | 481 ms
6,820 KB |
testcase_34 | AC | 481 ms
6,816 KB |
testcase_35 | AC | 170 ms
6,820 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <cmath> #include <string> #include <queue> #include <stack> #include <set> #include <map> #include <iomanip> #include <utility> #include <tuple> #include <functional> #include <bitset> #include <cassert> #include <complex> #include <stdio.h> #include <time.h> #include <numeric> #include <random> #include <unordered_map> #include <unordered_set> #define all(a) a.begin(),a.end() #define rep(i, n) for (ll i = 0; i < (n); i++) #define pb push_back #define debug(x) cerr << __LINE__ << ' ' << #x << ':' << x << '\n' #pragma GCC optimize("O3") #pragma GCC optimize("unroll-loops") using namespace std; typedef long long ll; typedef unsigned long long ull; typedef long double ld; typedef pair<ll, ll> P; typedef complex<ld> com; constexpr int inf = 1000000010; constexpr ll INF = 1000000000000000010; constexpr ld eps = 1e-12; constexpr ld pi = 3.141592653589793238; template<class T, class U> inline bool chmax(T &a, const U &b) { if (a < b) { a = b; return true; } return false; } template<class T, class U> inline bool chmin(T &a, const U &b) { if (a > b) { a = b; return true; } return false; } constexpr ll mod = 1000000007; ll modinv(ll a) { a %= mod; if (a == 0) abort(); ll b = mod, u = 1, v = 0; while (b) { ll t = a / b; a -= t * b; swap(a, b); u -= t * v; swap(u, v); } u %= mod; if (u < 0) u += mod; return u; } int main() { cin.tie(0); ios::sync_with_stdio(false); cout << fixed << setprecision(20); ll n, m; cin >> n >> m; vector<ll> a(n), b(m); rep(i, n) cin >> a[i]; rep(i, m) cin >> b[i]; vector<ll> invb(m); rep(i, m) invb[i] = modinv(b[i]); ll ans = 0; rep(i, n) { rep(j, m) { ll g = gcd(a[i], b[j]); ll x = (b[j] - g) * b[j] % mod; if (x & 1) x += mod; x >>= 1; ll sum = (b[j] + 1) * b[j] / 2 % mod; sum *= a[i]; sum %= mod; sum -= x; if (sum < 0) sum += mod; sum *= invb[j]; sum %= mod; ans += sum; } } cout << ans * 2 % mod << '\n'; }