結果

問題 No.146 試験監督(1)
ユーザー YugimnYugimn
提出日時 2022-05-15 22:16:42
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 126 ms / 1,000 ms
コード長 358 bytes
コンパイル時間 1,811 ms
コンパイル使用メモリ 164,448 KB
実行使用メモリ 4,372 KB
最終ジャッジ日時 2023-10-11 11:22:07
合計ジャッジ時間 2,968 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const ll MOD = 1000000007;

int main(){
    int n;
    cin >> n;
    ll ans = 0;
    for(int i=0; i<n; i++){
        ll c, d;
        cin >> c >> d;
        if(c%2 == 0) c--;
        ans += ((c/2+1) % MOD)  * (d % MOD);
        ans %= MOD;
    }
    cout << ans%MOD << endl;
    return 0;
}
0