結果
問題 | No.146 試験監督(1) |
ユーザー | kotatsugame |
提出日時 | 2016-12-21 18:38:48 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 157 bytes |
コンパイル時間 | 619 ms |
コンパイル使用メモリ | 63,616 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-08 09:36:41 |
合計ジャッジ時間 | 1,737 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
ソースコード
#include<iostream> using namespace std; int main() { long long n,s=0,a,b,M=1e9+7;cin>>n; for(int i=0;i<n;i++)cin>>a>>b,s=(s+(a+1)/2*b)%M; cout<<s<<endl; }