Task: | Equilateral numbers |
Sender: | CPLX |
Submission time: | 2024-11-16 14:49:21 +0200 |
Language: | C++ (C++17) |
Status: | READY |
Result: | WRONG ANSWER |
test | verdict | time | |
---|---|---|---|
#1 | ACCEPTED | 0.00 s | details |
#2 | ACCEPTED | 0.00 s | details |
#3 | ACCEPTED | 0.00 s | details |
#4 | ACCEPTED | 0.00 s | details |
#5 | WRONG ANSWER | 0.00 s | details |
#6 | RUNTIME ERROR | 0.69 s | details |
#7 | WRONG ANSWER | 0.01 s | details |
#8 | RUNTIME ERROR | 0.69 s | details |
#9 | RUNTIME ERROR | 0.69 s | details |
#10 | RUNTIME ERROR | 0.69 s | details |
#11 | RUNTIME ERROR | 0.69 s | details |
#12 | RUNTIME ERROR | 0.69 s | details |
Code
#include <bits/stdc++.h> #include <limits> using namespace std; #define ll long long int; int main() { int n; cin >> n; vector<int> dp; int k = 1; int eq = 1; dp.push_back(k); ++k; //cout << eq << endl; while (eq <= n) { eq += k; dp.push_back(eq); ++k; //cout << eq << endl; } int i = dp.size() - 1; int max = n; int nops = 0; while (max > 0 and i >= 0) { if (dp[i] <= max) { //cout << "->>>" << dp[i] << endl; max -= dp[i]; ++nops; } else --i; } cout << nops << endl; }
Test details
Test 1
Verdict: ACCEPTED
input |
---|
1 |
correct output |
---|
1 |
user output |
---|
1 |
Test 2
Verdict: ACCEPTED
input |
---|
2 |
correct output |
---|
2 |
user output |
---|
2 |
Test 3
Verdict: ACCEPTED
input |
---|
3 |
correct output |
---|
1 |
user output |
---|
1 |
Test 4
Verdict: ACCEPTED
input |
---|
5 |
correct output |
---|
3 |
user output |
---|
3 |
Test 5
Verdict: WRONG ANSWER
input |
---|
33 |
correct output |
---|
3 |
user output |
---|
4 |
Test 6
Verdict: RUNTIME ERROR
input |
---|
12385719843 |
correct output |
---|
3 |
user output |
---|
(empty) |
Test 7
Verdict: WRONG ANSWER
input |
---|
10935032 |
correct output |
---|
3 |
user output |
---|
4 |
Test 8
Verdict: RUNTIME ERROR
input |
---|
659023495928 |
correct output |
---|
3 |
user output |
---|
(empty) |
Test 9
Verdict: RUNTIME ERROR
input |
---|
913591235689 |
correct output |
---|
2 |
user output |
---|
(empty) |
Test 10
Verdict: RUNTIME ERROR
input |
---|
999999911791 |
correct output |
---|
1 |
user output |
---|
(empty) |
Test 11
Verdict: RUNTIME ERROR
input |
---|
1000000000000 |
correct output |
---|
2 |
user output |
---|
(empty) |
Test 12
Verdict: RUNTIME ERROR
input |
---|
999999999998 |
correct output |
---|
3 |
user output |
---|
(empty) |