# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
525610 | ParsaEs | 유적 3 (JOI20_ruins3) | C++17 | 390 ms | 18716 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
//InTheNameOfGOD
//PRS;)
#include<iostream>
#define Fast ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
using namespace std;
typedef long long ll;
const ll mod = 1e9 + 7;
const int xn = 2e3 + 5;
ll cnt[xn][xn], pr[xn][xn], dp[xn];
bool vis[xn << 1];
ll pp(ll x, ll y)
{
if(y < 1) return 1;
if(y < 2) return x;
ll ret = pp(x, y / 2);
ret = (ret * ret) % mod;
if(y & 1) ret = (ret * x) % mod;
return ret;
}
int main()
{
Fast
int n;
cin >> n;
for(int i = 0; i <= n; i++) cnt[0][i] = 1;
for(int i = 1; i <= n; i++) for(int j = i; j <= n; j++)
cnt[i][j] = (cnt[i - 1][j - 1] + cnt[i][j - 1]) % mod;
pr[n * 2 + 1][0] = dp[0] = 1;
for(ll i = 1; i <= n; i++) for(ll j = 1; j <= i; j++)
{
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |