結果
問題 | No.146 試験監督(1) |
ユーザー | yansi819 |
提出日時 | 2024-04-01 11:05:12 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 437 bytes |
コンパイル時間 | 3,715 ms |
コンパイル使用メモリ | 261,900 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-09-30 21:46:01 |
合計ジャッジ時間 | 4,718 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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) % mod * D % mod) % mod) % mod; else ans = (ans + ((C / 2) % mod * D % mod) % mod) % mod; } cout << ans << endl; return 0; }