# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
158110 | ToniB | Nadan (COCI18_nadan) | C++14 | 3 ms | 376 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <iostream>
using namespace std;
int main(){
int k, n, a = 1, b = 0;
cin >> k;
cin >> n;
for(int i = 0; i < n; i++){
if(a == n){
cout << k - b;
break;
}
else{
cout << a << endl;;
b += a;
a++;
}
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |