71722024-01-01 19:52:39tomi7Sakktábla (75 pont)cpp17Accepted 75/753ms3524 KiB
// Source: https://usaco.guide/general/io

#include <bits/stdc++.h>
using namespace std;

int main() {
	long long feher, fekete;cin>>feher>>fekete;
	if(feher>fekete) {
		swap(feher, fekete);
	}
	long oldal=1;
	while(1) {
		if(feher<oldal*oldal/2 || fekete<((oldal*oldal)+1)/2) break;
		oldal++;
	}
	cout<<oldal-1<<endl;
}
SubtaskSumTestVerdictTimeMemory
base75/75
1Accepted0/03ms1876 KiB
2Accepted0/03ms2124 KiB
3Accepted5/53ms2332 KiB
4Accepted5/53ms2424 KiB
5Accepted5/53ms2464 KiB
6Accepted5/53ms2588 KiB
7Accepted5/53ms2672 KiB
8Accepted5/53ms2676 KiB
9Accepted5/53ms2672 KiB
10Accepted5/53ms2676 KiB
11Accepted7/73ms2920 KiB
12Accepted7/73ms3128 KiB
13Accepted7/73ms3348 KiB
14Accepted7/73ms3440 KiB
15Accepted7/73ms3524 KiB