結果
問題 | No.146 試験監督(1) |
ユーザー | __math |
提出日時 | 2015-02-28 01:10:31 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 137 ms / 1,000 ms |
コード長 | 1,084 bytes |
コンパイル時間 | 743 ms |
コンパイル使用メモリ | 94,960 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-23 22:41:36 |
合計ジャッジ時間 | 1,789 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 133 ms
5,248 KB |
testcase_01 | AC | 137 ms
5,376 KB |
testcase_02 | AC | 135 ms
5,376 KB |
ソースコード
#define _USE_MATH_DEFINES #define _CRT_SECURE_NO_DEPRECATE #include <cstdio> #include <cstdlib> #include <cstring> #include <cmath> #include <climits> #include <cfloat> #include <ctime> #include <cassert> #include <map> #include <utility> #include <set> #include <iostream> #include <memory> #include <string> #include <vector> #include <algorithm> #include <functional> #include <sstream> #include <complex> #include <stack> #include <queue> #include <numeric> #include <list> #include <iomanip> #include <fstream> #include <iterator> #include <bitset> using namespace std; typedef long long ll; typedef unsigned long long ull; typedef pair<int, int> Pii; typedef pair<ll, ll> Pll; #define FOR(i,n) for(int i = 0; i < (n); i++) #define sz(c) ((int)(c).size()) #define ten(x) ((int)1e##x) #define tenll(x) ((ll)1e##x) template<class T> T gcd(T a, T b) { return b ? gcd(b, a % b) : a; } int main(){ int n; cin >> n; const int MOD = ten(9) + 7; ll ans = 0; while (n--) { ll c, d; cin >> c >> d; ans += ((c + 1) / 2) % MOD * (d % MOD) % MOD; } cout << ans % MOD << endl; }