結果
問題 | No.146 試験監督(1) |
ユーザー | test |
提出日時 | 2020-09-16 08:22:09 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 427 bytes |
コンパイル時間 | 2,075 ms |
コンパイル使用メモリ | 201,404 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-06-22 03:03:25 |
合計ジャッジ時間 | 2,810 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
ソースコード
#include <bits/stdc++.h> #define rep(i, ss, ee) for (int i = ss; i < ee; ++i) using namespace std; using ull = unsigned long long; const ull MOD = 1e9 + 7; void solve() { ull N, c, d, ans = 0; cin >> N; rep(i, 0, N) { cin >> c >> d; ans += (((c + 1) % MOD) / 2 % MOD) * d % MOD; ans %= MOD; } cout << ans << endl; } int main() { ios::sync_with_stdio(false); cin.tie(0); solve(); getchar(); }