結果
問題 | No.146 試験監督(1) |
ユーザー | commy |
提出日時 | 2018-03-17 18:50:04 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 131 ms / 1,000 ms |
コード長 | 561 bytes |
コンパイル時間 | 527 ms |
コンパイル使用メモリ | 68,268 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-06 10:01:59 |
合計ジャッジ時間 | 1,616 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 131 ms
5,248 KB |
testcase_01 | AC | 129 ms
5,376 KB |
testcase_02 | AC | 129 ms
5,376 KB |
ソースコード
#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; }