84942024-01-19 10:11:19DhaneHaneSakktábla (75 pont)cpp17Hibás válasz 30/753ms3736 KiB
// torta.cpp : This file contains the 'main' function. Program execution begins and ends there.
//

#include <iostream>

using namespace std;

int main()
{
    int n, m; cin >> n >> m;
    int o = n + m;
    int i = o;
    int db = 0;
    while (db == 0)
    {
        if (i * i <= o) db = i;
        else --i;
    }
    cout << i;
}

// 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
base30/75
1Elfogadva0/03ms1876 KiB
2Hibás válasz0/03ms2148 KiB
3Elfogadva5/53ms2244 KiB
4Elfogadva5/53ms2608 KiB
5Elfogadva5/53ms2700 KiB
6Elfogadva5/53ms2812 KiB
7Elfogadva5/53ms2952 KiB
8Hibás válasz0/53ms3160 KiB
9Elfogadva5/53ms3284 KiB
10Hibás válasz0/53ms3248 KiB
11Hibás válasz0/73ms3312 KiB
12Hibás válasz0/73ms3316 KiB
13Hibás válasz0/73ms3440 KiB
14Hibás válasz0/73ms3648 KiB
15Hibás válasz0/73ms3736 KiB