結果

問題 No.146 試験監督(1)
ユーザー MayimgMayimg
提出日時 2018-12-28 16:01:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 320 bytes
コンパイル時間 1,601 ms
コンパイル使用メモリ 163,160 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-09 03:13:34
合計ジャッジ時間 2,385 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
	ios::sync_with_stdio(false);
	cin.tie(0);
	const int mod = 1e9 + 7;  
	int n;
	cin >> n;
	long long ans = 0;
	while(n--) {
		long long c, d;
		cin >> c >> d;
		ans += (c + 1) / 2 % mod * d % mod;
	}
	cout << ans % mod << endl;
	return 0;	
}
0