結果
問題 | No.146 試験監督(1) |
ユーザー | oooooba |
提出日時 | 2021-01-16 20:28:37 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 136 ms / 1,000 ms |
コード長 | 516 bytes |
コンパイル時間 | 784 ms |
コンパイル使用メモリ | 91,768 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-06 00:46:23 |
合計ジャッジ時間 | 2,392 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 136 ms
5,248 KB |
testcase_01 | AC | 123 ms
5,376 KB |
testcase_02 | AC | 122 ms
5,376 KB |
ソースコード
#include <algorithm> #include <array> #include <cmath> #include <cstdio> #include <iostream> #include <numeric> #include <optional> #include <vector> using namespace std; int main() { int32_t n; cin >> n; const uint64_t mod = 1000 * 1000 * 1000 + 7; uint64_t ans = 0; for (auto i = 0; i < n; ++i) { uint64_t c, d; cin >> c >> d; uint64_t t = (c + 1) / 2 % mod; t = d % mod * t % mod; ans = (ans + t) % mod; } cout << ans << endl; return 0; }