結果
| 問題 |
No.146 試験監督(1)
|
| コンテスト | |
| ユーザー |
commy
|
| 提出日時 | 2018-03-17 18:50:04 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 139 ms / 1,000 ms |
| コード長 | 561 bytes |
| コンパイル時間 | 560 ms |
| コンパイル使用メモリ | 68,436 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-12-24 00:30:46 |
| 合計ジャッジ時間 | 2,003 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 3 |
ソースコード
#include <iostream>
#include <vector>
#include <algorithm>
#include <string>
#define REP(i, a, b) for (int i = int(a); i < int(b); i++)
#define dump(val) cerr << __LINE__ << ":\t" << #val << " = " << (val) << endl
using namespace std;
typedef long long int lli;
const int mod = 1000000007;
int main() {
int N;
cin >> N;
lli ans = 0;
REP (i, 0, N) {
lli C, D;
cin >> C >> D;
C = (C + 1) / 2;
C %= mod;
D %= mod;
ans = (ans + (D * C) % mod) % mod;
}
cout << ans << endl;
return 0;
}
commy