結果
問題 | No.146 試験監督(1) |
ユーザー | focus |
提出日時 | 2018-02-22 12:19:37 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 136 ms / 1,000 ms |
コード長 | 392 bytes |
コンパイル時間 | 631 ms |
コンパイル使用メモリ | 72,284 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-24 18:07:29 |
合計ジャッジ時間 | 1,841 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 136 ms
6,816 KB |
testcase_01 | AC | 134 ms
6,944 KB |
testcase_02 | AC | 132 ms
6,944 KB |
ソースコード
#include<iostream> #include<vector> #include<algorithm> #include<string> #include<cmath> #include<cstdio> using namespace std; int main(){ long long int N,sum=0,c,d,e; cin >> N; while(N--){ cin >> c >> d; e = (c+1)/2; e = e % 1000000007; d = d % 1000000007; sum += e*d; sum = sum % 1000000007; } cout << sum; return 0; }