結果
| 問題 | 
                            No.146 試験監督(1)
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2021-10-01 22:37:48 | 
| 言語 | C++14  (gcc 13.3.0 + boost 1.87.0)  | 
                    
| 結果 | 
                             
                                AC
                                 
                             
                            
                         | 
                    
| 実行時間 | 134 ms / 1,000 ms | 
| コード長 | 358 bytes | 
| コンパイル時間 | 1,597 ms | 
| コンパイル使用メモリ | 167,080 KB | 
| 実行使用メモリ | 6,944 KB | 
| 最終ジャッジ日時 | 2024-07-19 14:40:30 | 
| 合計ジャッジ時間 | 2,694 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge5 / judge1 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| other | AC * 3 | 
ソースコード
#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;
}