結果

問題 No.146 試験監督(1)
ユーザー focus
提出日時 2018-02-22 12:07:17
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 358 bytes
コンパイル時間 843 ms
コンパイル使用メモリ 72,208 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-24 16:03:33
合計ジャッジ時間 2,174 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 3
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
#include<string>
#include<cmath>
#include<cstdio>
using namespace std;
int main(){
    long long int N,sum=0,c,d,e;
    cin >> N;
    while(N--){
        cin >> c >> d;
        e = ((c+1)/2)%1000000007;
        sum += e;
        sum = sum % 1000000007;
    }
    cout << sum%1000000007;
    return 0;
}
0