#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int main() {
const int MOD=1e9+7;
int n; cin>>n;
vector<ll> a(n+1), b(n+1);
for (int i=1; i<=n; i++) {
cin>>a[i]>>b[i];
}
ll ans=1;
for (int i=0; i<n; i++) {
ans=(ans*2)%MOD;
}
ans=(ans+1)%MOD;
cout<<ans%MOD;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
344 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
344 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
344 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
344 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |