結果

問題 No.146 試験監督(1)
ユーザー forest3forest3
提出日時 2020-06-02 13:19:02
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 126 ms / 1,000 ms
コード長 415 bytes
コンパイル時間 1,338 ms
コンパイル使用メモリ 169,624 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-02 23:03:44
合計ジャッジ時間 2,612 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
6,812 KB
testcase_01 AC 120 ms
6,940 KB
testcase_02 AC 126 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main()
{
	int N;
	cin >> N;
	vector<long long> C( N );
	vector<long long> D( N );
	for( int i = 0; i < N; i++ ) {
		cin >> C[i] >> D[i];
	}

	const long long m = 1000000000 + 7;
	long long ans = 0;
	for( int i = 0; i < N; i++ ) {
		long long c = C[i] / 2;
		if( C[i] % 2 ) c++;
		c %= m;
		D[i] %= m;
		ans += c * D[i] % m;
		ans %= m;
	}

	cout << ans << endl;
}
0