結果
問題 | No.146 試験監督(1) |
ユーザー | albicilla |
提出日時 | 2016-10-03 12:32:18 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 135 ms / 1,000 ms |
コード長 | 374 bytes |
コンパイル時間 | 1,293 ms |
コンパイル使用メモリ | 157,288 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-21 15:10:38 |
合計ジャッジ時間 | 2,348 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 135 ms
5,248 KB |
testcase_01 | AC | 135 ms
5,248 KB |
testcase_02 | AC | 135 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = unsigned long long; #define FOR(i,a,b) for(ll i=a;i<b;i++) #define REP(i,b) FOR(i,0,b) const ll mod = 1000000007; const ll MAX_N=100000; ll n,ans; ll c[MAX_N+10],d[MAX_N+10]; int main(){ cin>>n; REP(i,n){ cin>>c[i]>>d[i]; ans+=(((c[i]+1))/2)%mod*(d[i]%mod)%mod; } cout<<ans%mod<<endl; return 0; }