結果
問題 | No.146 試験監督(1) |
ユーザー | gemy |
提出日時 | 2023-11-23 16:54:24 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 464 bytes |
コンパイル時間 | 2,470 ms |
コンパイル使用メモリ | 201,992 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-26 08:12:46 |
合計ジャッジ時間 | 3,828 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define rep(i, n) for (int i = 0; i < (int)(n); ++i) int main() { // Input int N; cin >> N; vector<long long> C(N), D(N); rep(i, N) cin >> C[i] >> D[i]; // Calculation long long ans = 0; const long long MOD = 1'000'000'007; rep(i, N) { int able = (C[i] + 1) / 2; ans = (ans + (able % MOD) * (D[i] % MOD) % MOD) % MOD; } // Output cout << ans << endl; }