9373 2024. 02. 21 10:33:22 zsebi A sárkány feladványa (50) cpp17 Elfogadva 50/50 3ms 3396 KiB
// sarkany.cpp : This file contains the 'main' function. Program execution begins and ends there.
//

#include <iostream>
#include <cmath>
#define ll long long
using namespace std;
ll T, a, b, n;
int main()
{
    T = 3;
    while (T--)
    {
        cin >> a >> b >> n;
        ll sz = a * b;
        ll r = a % b;
        while (r)
        {
            a = b;
            b = r;
            r = a % b;
        }
        sz /= b;
        ll szj = sz,db=0;
        
        while (szj)
        {
            szj /= 10;
            db++;
        }
        if (db <= n)
        {
            cout << sz;
            for (int i = db; i < n; ++i)cout << '0';
        }
        else cout << "-1";
        cout << "\n";
    }
    return 0;
}

// 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 1748 KiB
2 Elfogadva 0/0 3ms 1912 KiB
3 Elfogadva 3/3 3ms 2156 KiB
4 Elfogadva 3/3 3ms 2368 KiB
5 Elfogadva 3/3 3ms 2548 KiB
6 Elfogadva 3/3 3ms 2792 KiB
7 Elfogadva 3/3 2ms 2824 KiB
8 Elfogadva 3/3 3ms 2956 KiB
9 Elfogadva 3/3 2ms 3032 KiB
10 Elfogadva 3/3 2ms 3156 KiB
11 Elfogadva 3/3 2ms 3156 KiB
12 Elfogadva 3/3 2ms 3032 KiB
13 Elfogadva 4/4 3ms 3164 KiB
14 Elfogadva 4/4 3ms 3244 KiB
15 Elfogadva 4/4 3ms 3396 KiB
16 Elfogadva 4/4 3ms 3244 KiB
17 Elfogadva 4/4 3ms 3248 KiB