2709 2023. 01. 19 09:37:26 bzsofia A sárkány feladványa (50) cpp11 Elfogadva 50/50 3ms 3460 KiB
// a sarkany feladvany.cpp : This file contains the 'main' function. Program execution begins and ends there.
//

#include <iostream>
#include <string>

using namespace std;

long long a, b, c, i, j, l, lkkt, szam, r, p;
string s;

int main()
{
    for (i = 1; i <= 3; ++i)
    {
        cin >> a >> b >> l;

        p = a * b;
        r = a % b;
        while (r>0)
        {
            a = b;
            b = r;
            r = a % b;
        }
        szam = lkkt = p / b;

        s = to_string(szam);

        if (s.size() <= l)
        {
            cout << lkkt;
            for (j = 1; j <= l - s.size(); ++j) cout << 0;
        }
        else cout << -1;
        cout << "\n";
    }
}

// Run program: Ctrl + F5 or Debug > Start Without Debugging menu
// Debug program: F5 or Debug > Start Debugging menu

// Tips for Getting Started: 
//   1. Use the Solution Explorer window to add/manage files
//   2. Use the Team Explorer window to connect to source control
//   3. Use the Output window to see build output and other messages
//   4. Use the Error List window to view errors
//   5. Go to Project > Add New Item to create new code files, or Project > Add Existing Item to add existing code files to the project
//   6. In the future, to open this project again, go to File > Open > Project and select the .sln file
Részfeladat Összpont Teszt Verdikt Idő Memória
base 50/50
1 Elfogadva 0/0 3ms 1744 KiB
2 Elfogadva 0/0 2ms 1992 KiB
3 Elfogadva 3/3 2ms 2388 KiB
4 Elfogadva 3/3 2ms 2396 KiB
5 Elfogadva 3/3 2ms 2524 KiB
6 Elfogadva 3/3 2ms 2576 KiB
7 Elfogadva 3/3 2ms 2824 KiB
8 Elfogadva 3/3 2ms 2704 KiB
9 Elfogadva 3/3 2ms 2776 KiB
10 Elfogadva 3/3 2ms 2908 KiB
11 Elfogadva 3/3 2ms 3100 KiB
12 Elfogadva 3/3 2ms 3176 KiB
13 Elfogadva 4/4 2ms 3176 KiB
14 Elfogadva 4/4 2ms 3128 KiB
15 Elfogadva 4/4 2ms 3260 KiB
16 Elfogadva 4/4 2ms 3328 KiB
17 Elfogadva 4/4 2ms 3460 KiB