# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
253902 | 2020-07-29T05:22:03 Z | Molukhyyeh | Nadan (COCI18_nadan) | C++14 | 1 ms | 256 KB |
#include <bits/stdc++.h> using namespace std; #define ll long long #define all(x) x.begin(),x.end() int const N = 200001; int main(){ int n, k; scanf("%d%d", &k, &n); int i = 1; if(k >= (n * (n+1))/2){ while(i < n){ k -= i; printf("%d\n", i++); } printf("%d\n", k); } else { for(int j = 0; j<n-1; ++j)printf("1\n"), --k; printf("%d\n", k); } }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 256 KB | Output is correct |
2 | Correct | 0 ms | 256 KB | Output is correct |
3 | Correct | 0 ms | 256 KB | Output is correct |
4 | Correct | 0 ms | 256 KB | Output is correct |
5 | Correct | 0 ms | 256 KB | Output is correct |
6 | Correct | 0 ms | 256 KB | Output is correct |
7 | Correct | 0 ms | 256 KB | Output is correct |
8 | Correct | 0 ms | 256 KB | Output is correct |
9 | Correct | 1 ms | 256 KB | Output is correct |
10 | Correct | 0 ms | 256 KB | Output is correct |