結果
問題 | No.146 試験監督(1) |
ユーザー | kekenx |
提出日時 | 2020-05-26 22:46:10 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 126 ms / 1,000 ms |
コード長 | 1,807 bytes |
コンパイル時間 | 1,458 ms |
コンパイル使用メモリ | 167,656 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-13 03:06:33 |
合計ジャッジ時間 | 2,830 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 126 ms
5,248 KB |
testcase_01 | AC | 123 ms
5,248 KB |
testcase_02 | AC | 124 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; template<typename T, T mod> struct modint { private: T x; public: modint(): x((T)0) {} modint(T y): x(y >= 0? y % mod: (mod - (-y) % mod) % mod) {} T get() { return x; } modint &operator+=(const modint &p) { if ((x += p.x) >= mod) x -= mod; return *this; } modint &operator-=(const modint &p) { if ((x += mod - p.x) >= mod) x -= mod; return *this; } modint &operator*=(const modint &p) { x = x * p.x % mod; return *this; } modint &operator/=(const modint &p) { *this *= p.inverse(); return *this; } modint operator-() const { return modint(-x); } modint operator+(const modint &p) const {return modint(*this) += p; } modint operator-(const modint &p) const {return modint(*this) -= p; } modint operator*(const modint &p) const {return modint(*this) *= p; } modint operator/(const modint &p) const {return modint(*this) /= p; } bool operator==(const modint &p) const { return x == p.x; } bool operator!=(const modint &p) const { return x != p.x; } modint inverse() const { T a = x, b = mod, u = 1, v = 0, t; while (b > 0) { t = a / b; a -= t * b; swap(a, b); u -= t * v; swap(u, v); } return modint(u); } modint pow(int e) const { T a = 1, p = x; while(e > 0) { if (e % 2 == 0) { p = (p * p) % mod; e /= 2; } else { a = (a * p) % mod; e--; } } return modint(a); } }; const long long MOD = 1000000007; using mi = modint<long long, MOD>; int main() { int n; cin >> n; mi ans = 0; for (int i = 0; i < n; ++i) { ll tc, td; cin >> tc >> td; mi m = (tc + 1) / 2, d = td; m *= d; ans += m; } cout << ans.get() << '\n'; return 0; }