結果
問題 | No.146 試験監督(1) |
ユーザー | Yug_min_null |
提出日時 | 2021-10-01 22:35:29 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 372 bytes |
コンパイル時間 | 1,682 ms |
コンパイル使用メモリ | 185,460 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-19 13:06:00 |
合計ジャッジ時間 | 2,907 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
ソースコード
#define _GLIBCXX_DEBUG #define ll long long #define INF 1000000000; #define INF_B 1000000000000000000; #include <bits/stdc++.h> using namespace std; using Graph = vector<vector<int>>; int main(){ int N; cin >> N; ll ans = 0; for(int i = 0; i < N; i++){ ll C, D; cin >> C >> D; C = (C+1)/2; ans += C*D; ans %= 1000000007; } cout << ans << endl; }