結果

問題 No.146 試験監督(1)
ユーザー commycommy
提出日時 2018-03-17 18:50:04
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 126 ms / 1,000 ms
コード長 561 bytes
コンパイル時間 437 ms
コンパイル使用メモリ 69,136 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-08-25 15:42:29
合計ジャッジ時間 1,667 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
4,376 KB
testcase_01 AC 110 ms
4,380 KB
testcase_02 AC 126 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0