結果
問題 | No.146 試験監督(1) |
ユーザー | k |
提出日時 | 2020-06-16 18:53:51 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 35 ms / 1,000 ms |
コード長 | 536 bytes |
コンパイル時間 | 1,857 ms |
コンパイル使用メモリ | 201,144 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-03 11:55:22 |
合計ジャッジ時間 | 2,936 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 35 ms
6,812 KB |
testcase_01 | AC | 35 ms
6,944 KB |
testcase_02 | AC | 35 ms
6,944 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define REP(i,n) for(int i=0; i<(int)(n); i++) #define FOR(i,b,e) for (int i=(int)(b); i<(int)(e); i++) #define ALL(x) (x).begin(), (x).end() const double PI = acos(-1); int main() { ios_base::sync_with_stdio(0); cin.tie(0); const long long MOD = 1e9 + 7; long long ret = 0; int n; cin >> n; REP (i, n) { long long c, d; cin >> c >> d; c = (c + 1) / 2 % MOD; d = d % MOD; ret = (ret + c * d % MOD) % MOD; } cout << ret << endl; return 0; }