結果
問題 | No.146 試験監督(1) |
ユーザー | knk |
提出日時 | 2017-09-26 20:46:28 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 37 ms / 1,000 ms |
コード長 | 463 bytes |
コンパイル時間 | 542 ms |
コンパイル使用メモリ | 68,992 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-15 16:52:29 |
合計ジャッジ時間 | 1,169 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
5,248 KB |
testcase_01 | AC | 37 ms
5,248 KB |
testcase_02 | AC | 37 ms
5,248 KB |
ソースコード
#include <iostream> #include <iomanip> typedef long long ll; typedef unsigned long long ul; int main(void) { std::cin.tie(0); std::ios::sync_with_stdio(false); std::cout << std::fixed << std::setprecision(3); ll n; std::cin >> n; ul ans = 0; for (ul i = 0; i < n; ++i) { ul c, d; std::cin >> c >> d; ans += ((c+1)/2%1000000007) * (d % 1000000007) % 1000000007; ans %= 1000000007; } std::cout << ans << std::endl; return 0; }