結果
問題 | No.146 試験監督(1) |
ユーザー | Hydrogen332 |
提出日時 | 2024-09-27 21:36:41 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 424 bytes |
コンパイル時間 | 2,308 ms |
コンパイル使用メモリ | 199,704 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-27 21:36:49 |
合計ジャッジ時間 | 3,387 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; #define rep(i, s, e) for (int i = (int)s; i < (int)e; i++) ll mod = 1e9 + 7; int main() { cin.tie(nullptr); int N; cin >> N; ll ans = 0; rep(i, 0, N) { ll C, D; cin >> C >> D; D %= mod; ans += ((C + 1) / 2) * D; ans %= mod; } cout << ans << '\n'; }