結果
| 問題 |
No.146 試験監督(1)
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-05-15 22:16:42 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 134 ms / 1,000 ms |
| コード長 | 358 bytes |
| コンパイル時間 | 1,608 ms |
| コンパイル使用メモリ | 167,820 KB |
| 実行使用メモリ | 6,944 KB |
| 最終ジャッジ日時 | 2024-09-13 10:07:31 |
| 合計ジャッジ時間 | 2,734 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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;
}