結果
問題 | No.146 試験監督(1) |
ユーザー | albicilla |
提出日時 | 2016-10-03 12:12:18 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 360 bytes |
コンパイル時間 | 1,151 ms |
コンパイル使用メモリ | 158,420 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-21 15:10:07 |
合計ジャッジ時間 | 2,203 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define FOR(i,a,b) for(int i=a;i<b;i++) #define REP(i,b) FOR(i,0,b) using ll = long long; const ll mod = LLONG_MAX; 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)%mod)/2)*d[i]%mod; } cout<<ans%mod<<endl; return 0; }