結果
問題 | No.146 試験監督(1) |
ユーザー | yansi819 |
提出日時 | 2024-04-01 11:00:46 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 409 bytes |
コンパイル時間 | 3,815 ms |
コンパイル使用メモリ | 261,056 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-09-30 21:45:55 |
合計ジャッジ時間 | 5,289 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using namespace atcoder; using ll = long long; using ld = long double; ll N, C, D, ans; ll mod = 1000000007; int main() { cin >> N; for (int i = 0; i < N; i++) { cin >> C >> D; if (C % 2 == 1) ans = (ans + ((C + 1) / 2 * D) % mod) % mod; else ans = (ans + (C / 2 * D) % mod) % mod; } cout << ans << endl; return 0; }