/ tabris /

记录详情

Accepted

/in/foo.cc: In function 'int main()':
/in/foo.cc:13:9: warning: unused variable '_' [-Wunused-variable]
     int _ = 1;
         ^
# 状态 耗时 内存占用
#1 Accepted 7ms 384.0 KiB
#2 Accepted 7ms 208.0 KiB
#3 Accepted 5ms 368.0 KiB

代码

#include <bits/stdc++.h>
typedef long long int LL;
using namespace std;

const int N = 1e5+8;
const int MOD = 1e9+7;
/****************************************************/
int n;
int main(){
    // freopen("test_3.in","r",stdin);
    // freopen("test_3.out","w",stdout);

    int _ = 1;
LL a,b;
    // for(scanf("%d",&_);_--;){
    while(~scanf("%d",&n)){
        LL ans = 1;
        for(int i=1;i<=n;i++){
            scanf("%lld%lld",&a,&b);
            ans = (ans * (a+b)) %MOD;
        }
        printf("%lld\n", ans);
    }
    return 0;
}

信息

递交者
类型
递交
题目
所有情况的和
语言
C++
递交时间
2017-11-19 21:20:08
评测时间
2017-11-19 21:20:08
评测机
分数
384
总耗时
19ms
峰值内存
384.0 KiB