結果
問題 | No.146 試験監督(1) |
ユーザー | Bwambocos |
提出日時 | 2017-03-28 14:05:39 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 730 bytes |
コンパイル時間 | 877 ms |
コンパイル使用メモリ | 96,404 KB |
実行使用メモリ | 6,940 KB |
最終ジャッジ日時 | 2024-07-06 13:21:11 |
合計ジャッジ時間 | 1,932 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
ソースコード
#include <cstdio> #include <cmath> #include <cstring> #include <iostream> #include <iomanip> #include <sstream> #include <map> #include <set> #include <array> #include <queue> #include <string> #include <vector> #include <numeric> #include <algorithm> #include <functional> #define MOD 1000000007 #define INF 11234567890 #define in std::cin #define out std::cout #define rep(i,N) for(LL i=0;i<N;++i) typedef long long int LL; typedef std::pair<int, int> P; LL N, C[112345], D[112345]; LL ans; int main() { in >> N; rep(i, N) { in >> C[i] >> D[i]; } rep(i, N) { if (C[i] % 2 == 1) { ans += (C[i] / 2 + 1) * D[i]; } else { ans += (C[i] / 2) * D[i]; } ans %= MOD; } out << ans << std::endl; return 0; }