結果
問題 | No.146 試験監督(1) |
ユーザー | albicilla |
提出日時 | 2016-10-03 12:29:08 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 397 bytes |
コンパイル時間 | 1,311 ms |
コンパイル使用メモリ | 157,444 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-21 15:10:36 |
合計ジャッジ時間 | 2,197 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
ソースコード
#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]; c[i]%=mod; d[i]%=mod; ans+=(((c[i]+1))/2)*(d[i]%mod); } cout<<ans%mod<<endl; return 0; }