28922023-02-02 09:45:17bzsofiaFőzet készítéscpp11Hibás válasz 0/50536ms4548 KiB
// Fozet keszites.cpp : This file contains the 'main' function. Program execution begins and ends there.
//

#include <iostream>
#include <map>

using namespace std;

long long a, b, A, B, db, t, vana, vanb;
map <double, bool> x;

int main()
{
    cin >> t;

    while (t)
    {
        cin >> A >> B;
        db = 0;
        x.clear();
        vana = A;
        vanb = B;

        for (a = 1; a <= A; ++a)
        {
            for (b = 1; b <= B; ++b)
            {
                if (!x[a / b] && a<=vana && b<=vanb)
                {
                    ++db;
                    x[a / b] = 1;
                    vanb -= b;
                    vana -= a;
                    //cout << a << " " << b << "\n";
                }
            }
        }

        --t;
        cout << db << "\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
base0/50
1Elfogadva0/03ms1748 KiB
2Hibás válasz0/0140ms1912 KiB
3Hibás válasz0/33ms2120 KiB
4Hibás válasz0/23ms2244 KiB
5Hibás válasz0/33ms2336 KiB
6Hibás válasz0/23ms2548 KiB
7Hibás válasz0/3138ms2640 KiB
8Hibás válasz0/2145ms2768 KiB
9Hibás válasz0/3141ms2976 KiB
10Hibás válasz0/2141ms3060 KiB
11Időlimit túllépés0/2462ms3296 KiB
12Időlimit túllépés0/2467ms2728 KiB
13Időlimit túllépés0/2474ms3488 KiB
14Időlimit túllépés0/2453ms2832 KiB
15Időlimit túllépés0/2536ms3828 KiB
16Időlimit túllépés0/2472ms3188 KiB
17Időlimit túllépés0/2451ms4128 KiB
18Időlimit túllépés0/2467ms4252 KiB
19Időlimit túllépés0/2463ms4340 KiB
20Időlimit túllépés0/3463ms4336 KiB
21Időlimit túllépés0/3476ms4332 KiB
22Időlimit túllépés0/3453ms4412 KiB
23Időlimit túllépés0/3469ms4548 KiB