121362024-12-03 13:38:23TortelliniJrA Négyszögletű Kerek Erdőcpp17Accepted 100/1002ms400 KiB
#include <iostream>
using namespace std;
int main()
{
    int n, a, b;
    cin >> n >> a >> b;
	if (a <= b)
	{
		if (b - a + 1 >= 5)
		{
			cout << b - a + 1 << endl;
			return 0;
		}
		else
		{
			cout << "Tul konnyu!" << endl;
			return 0;
		}
	}
	else
	{
		b += n;
		if (b - a + 1 >= 5)
		{
			cout << b - a + 1 << endl;
			return 0;
		}
		else
		{
			cout << "Tul konnyu!" << endl;
			return 0;
		}
	}
}
SubtaskSumTestVerdictTimeMemory
subtask10/0
1Accepted1ms320 KiB
2Accepted1ms320 KiB
subtask240/40
3Accepted1ms320 KiB
4Accepted1ms320 KiB
5Accepted1ms320 KiB
6Accepted1ms320 KiB
7Accepted1ms320 KiB
8Accepted1ms320 KiB
9Accepted1ms320 KiB
subtask320/20
10Accepted1ms320 KiB
11Accepted1ms320 KiB
12Accepted1ms400 KiB
13Accepted1ms320 KiB
14Accepted1ms320 KiB
subtask440/40
15Accepted1ms320 KiB
16Accepted2ms320 KiB
17Accepted1ms320 KiB
18Accepted2ms320 KiB
19Accepted1ms324 KiB
20Accepted1ms320 KiB
21Accepted1ms320 KiB