CSES - Datatähti 2023 alku - Results
Submission details
Task:Kertoma
Sender:FenixHongell
Submission time:2022-11-02 13:42:20 +0200
Language:C++11
Status:COMPILE ERROR

Compiler report

input/code.cpp: In function 'int main()':
input/code.cpp:59:27: error: too few arguments to function 'int Count(int, int, int, int, int, int, int, int, int, int)'
   59 |         auto count = Count();
      |                      ~~~~~^~
input/code.cpp:6:5: note: declared here
    6 | int Count(int a, int b, int c, int d, int e, int f, int g, int h, int j, int k) {
      |     ^~~~~
input/code.cpp:62:16: error: 'num' was not declared in this scope; did you mean 'enum'?
   62 |             if(num >= 2) digits += log10(n);
      |                ^~~
      |                enum

Code

#include <iostream>
#include <tgmath.h>

using namespace std;

int Count(int a, int b, int c, int d, int e, int f, int g, int h, int j, int k) {
    int num = a+b+c+d+e+f+g+h+j+k;
    return num;
}
int calcd(int num) {
    double digits = 0;
    for (int i = 2; i <= num; i++)
        digits += log10(i);
 
    return floor(digits) + 1;
}

int binary_search(int n, int T) {
    int L = 0;
    int R = n - 1;
    while (L <= R) {
        int m = floor((L + R) / 2);
        if (calcd(m) < T) {
            L = m + 1;
        }
        else if (calcd(m) > T) {
            R = m - 1;
        }
        else {
            return m;
        }
    }

    return 0;
}


int main() {
    int a,b,c,d,e,f,g,h,j,k;
    cin >> a >> b >> c >> d >> e >> f >> g >> h >> j >> k;
    if (a == 0 && b == 0 && c == 1 && d == 0 && e == 1 && f == 0 && g == 0 && h == 0 && j == 0 && k == 0) {
        cout << "4" << endl;
    }
    else if (a == 1 && b == 1 && c == 1 && d == 0 && e == 0 && f == 0 && g == 0 && h == 0 && j == 0 && k == 0) {
        cout << "5" << endl;
    }
    else if (a == 1 && b == 0 && c == 1 && d == 0 && e == 0 && f == 0 && g == 0 && h == 1 && j == 0 && k == 0) {
        cout << "6" << endl;
    }
    else if (a == 0 && b == 0 && c == 1 && d == 0 && e == 0 && f == 0 && g == 0 && h == 0 && j == 0 && k == 0) {
        cout << "2" << endl;
    }
    else if (a == 0 && b == 0 && c == 0 && d == 0 && e == 0 && f == 0 && g == 1 && h == 0 && j == 0 && k == 0) {
        cout << "3" << endl;
    }
    else {
        int n = 0;
        double digits = 0.0;
        auto count = Count();

        while (true) {
            if(num >= 2) digits += log10(n);
            if (floor(digits) + 1 == count) {
            cout << n << endl;
            break;
        }
        ++n;
        }
    }
}