27092023-01-19 09:37:26bzsofiaA sárkány feladványa (50)cpp11Accepted 50/503ms3460 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
SubtaskSumTestVerdictTimeMemory
base50/50
1Accepted0/03ms1744 KiB
2Accepted0/02ms1992 KiB
3Accepted3/32ms2388 KiB
4Accepted3/32ms2396 KiB
5Accepted3/32ms2524 KiB
6Accepted3/32ms2576 KiB
7Accepted3/32ms2824 KiB
8Accepted3/32ms2704 KiB
9Accepted3/32ms2776 KiB
10Accepted3/32ms2908 KiB
11Accepted3/32ms3100 KiB
12Accepted3/32ms3176 KiB
13Accepted4/42ms3176 KiB
14Accepted4/42ms3128 KiB
15Accepted4/42ms3260 KiB
16Accepted4/42ms3328 KiB
17Accepted4/42ms3460 KiB