Submission #1070747

# Submission time Handle Problem Language Result Execution time Memory
1070747 2024-08-22T17:42:55 Z vjudge1 Calvinball championship (CEOI15_teams) C++17
20 / 100
254 ms 804 KB
#include<bits/stdc++.h>

using namespace std;

typedef pair<int, int> ii;
typedef long long ll;
typedef vector<ii> vii;
typedef vector<ll> vll;
typedef pair<long long, long long> pll;
typedef pair<char, int> ci;
typedef pair<string, int> si;
typedef long double ld;
typedef vector<int> vi;
typedef vector<string> vs;
#define pb push_back
#define fi first
#define se second
#define whole(v) v.begin(), v.end()
#define rwhole(v) v.rbegin(), v.rend()
#define inf INT_MAX/2
#define fro front

int main(){
    ios_base::sync_with_stdio(false);
    cin.tie(0);
    int n; cin >> n;
    vector<ll> x(n);
    for(int i = 0; i < n; ++i){
        ll j; cin >> j;
        x.pb(j);
    }
    vector<ll> a(n+1, 1);
    vector<ll> b(n+1);
    for(int i = n-1; i >= 0; --i){
        for(int j = 0; j < n; ++j){
            ll sum = 0;
            sum += j * a[j] % 1000007;
            sum += a[j+1] % 1000007;
            b[j] = sum;
            //cout << i << " " << j << " " << sum << endl;
        }
        a = b;
    }
    cout << b[0]  << endl;
}
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 344 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 0 ms 348 KB Output is correct
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 344 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 3 ms 348 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 238 ms 804 KB Output is correct
# Verdict Execution time Memory Grader output
1 Incorrect 70 ms 604 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 254 ms 792 KB Output isn't correct
2 Halted 0 ms 0 KB -