UOJ Logo

NOI.AC

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#212518#3840. 布朗运动(motion)chenchen100ms1172kbC++11250b2024-10-19 10:36:012024-10-19 12:33:37

answer

#include <iostream>
#include <cstring>
#include <algorithm>

using namespace std;

int n;

int main()
{
	scanf("%d", &n);
	if (n == 2)
	{
		puts("4/5");
		return 0;
	}
	if (n == 3)
	{
		puts("10/13");
		return 0;
	}
	return 0;
}

Details

小提示:点击横条可展开更详细的信息

Test #1:

score: 10
Accepted
time: 0ms
memory: 1172kb

input:

3

output:

10/13

result:

ok single line: '10/13'

Test #2:

score: 0
Wrong Answer
time: 0ms
memory: 1164kb

input:

7

output:


result:

wrong answer 1st lines differ - expected: '233/305', found: ''

Test #3:

score: 0
Wrong Answer
time: 0ms
memory: 1160kb

input:

10

output:


result:

wrong answer 1st lines differ - expected: '4181/5473', found: ''

Test #4:

score: 0
Wrong Answer
time: 0ms
memory: 1164kb

input:

16

output:


result:

wrong answer 1st lines differ - expected: '1346269/1762289', found: ''

Test #5:

score: 0
Wrong Answer
time: 0ms
memory: 1164kb

input:

21

output:


result:

wrong answer 1st lines differ - expected: '331160282/433494437', found: ''

Test #6:

score: 0
Wrong Answer
time: 0ms
memory: 1164kb

input:

29

output:


result:

wrong answer 1st lines differ - expected: '730870592324/956722026041', found: ''

Test #7:

score: 0
Wrong Answer
time: 0ms
memory: 1160kb

input:

32

output:


result:

wrong answer 1st lines differ - expected: '13114940639684/17167680177565', found: ''

Test #8:

score: 0
Wrong Answer
time: 0ms
memory: 1160kb

input:

35

output:


result:

wrong answer 1st lines differ - expected: '235338060921988/308061521170129', found: ''

Test #9:

score: 0
Wrong Answer
time: 0ms
memory: 1160kb

input:

39

output:


result:

wrong answer 1st lines differ - expected: '11055879401769514/14472334024676221', found: ''

Test #10:

score: 0
Wrong Answer
time: 0ms
memory: 1164kb

input:

40

output:


result:

wrong answer 1st lines differ - expected: '14472334024676221/18944531186571953', found: ''