結果
問題 | No.146 試験監督(1) |
ユーザー | abL8ZLsTbF |
提出日時 | 2016-09-01 02:18:50 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 272 bytes |
コンパイル時間 | 517 ms |
コンパイル使用メモリ | 71,336 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-14 13:58:31 |
合計ジャッジ時間 | 1,597 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
ソースコード
#include <cmath> #include <iostream> using namespace std; int main() { int N; cin >> N; long long ans = 0; for (int i = 0; i < N; i++) { long long C, D; cin >> C >> D; ans += ceil(C / 2.0) * D; ans %= 1000000007LL; } cout << dec << ans << endl; return 0; }