93732024-02-21 10:33:22zsebiA sárkány feladványa (50)cpp17Elfogadva 50/503ms3396 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ÖsszpontTesztVerdiktIdőMemória
base50/50
1Elfogadva0/03ms1748 KiB
2Elfogadva0/03ms1912 KiB
3Elfogadva3/33ms2156 KiB
4Elfogadva3/33ms2368 KiB
5Elfogadva3/33ms2548 KiB
6Elfogadva3/33ms2792 KiB
7Elfogadva3/32ms2824 KiB
8Elfogadva3/33ms2956 KiB
9Elfogadva3/32ms3032 KiB
10Elfogadva3/32ms3156 KiB
11Elfogadva3/32ms3156 KiB
12Elfogadva3/32ms3032 KiB
13Elfogadva4/43ms3164 KiB
14Elfogadva4/43ms3244 KiB
15Elfogadva4/43ms3396 KiB
16Elfogadva4/43ms3244 KiB
17Elfogadva4/43ms3248 KiB