結果
問題 | No.146 試験監督(1) |
ユーザー | nnasen |
提出日時 | 2017-09-23 12:10:26 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 135 ms / 1,000 ms |
コード長 | 467 bytes |
コンパイル時間 | 1,583 ms |
コンパイル使用メモリ | 167,356 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-14 04:03:52 |
合計ジャッジ時間 | 2,696 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 133 ms
6,816 KB |
testcase_01 | AC | 134 ms
6,820 KB |
testcase_02 | AC | 135 ms
6,820 KB |
ソースコード
#define _USE_MATH_DEFINES #include <bits/stdc++.h> #define FOR(i,a,b) for(int i = (a); i < (b); ++i) #define REP(i,n) FOR(i,0,n) #define SZ(n) (int)(n).size() #define ALL(n) (n).begin(), (n).end() #define MOD 1000000007 using namespace std; typedef long long LL; typedef vector<int> VI; int main() { int n; cin >> n; LL ans = 0; REP(i, n) { LL c, d; cin >> c >> d; ans += (((c + 1) / 2) % MOD * (d % MOD)) % MOD; } cout << ans % MOD << endl; return 0; }