QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#387701#3741. 时间旅行rukongAC ✓19ms3788kbC++17358b2024-04-12 18:54:442024-04-12 18:54:45

Judging History

你现在查看的是最新测评结果

  • [2024-04-12 18:54:45]
  • 评测
  • 测评结果:AC
  • 用时:19ms
  • 内存:3788kb
  • [2024-04-12 18:54:44]
  • 提交

answer

#include<iostream>
#include<algorithm>
#include<math.h>
#include<map>
#include<string.h>
#include<queue>
#define int long long
#define endl "\n";
using namespace std;
signed main()
{
//	ios::sync_with_stdio(0),cin.tie(0),cout.tie(0);
	int a,b;
	while(scanf("%lld%lld",&a,&b)!=EOF)
	{
		if(a>b) printf("%lld\n",a);
		else printf("%lld\n",b+1);
	}
	return 0;
}

详细

Test #1:

score: 100
Accepted
time: 19ms
memory: 3788kb

input:

1 0
1 1
1 2
1 3
1 4
1 5
1 6
1 7
1 8
1 9
1 10
1 11
1 12
1 13
1 14
1 15
1 16
1 17
1 18
1 19
1 20
1 21
1 22
1 23
1 24
1 25
1 26
1 27
1 28
1 29
1 30
1 31
1 32
1 33
1 34
1 35
1 36
1 37
1 38
1 39
1 40
1 41
1 42
1 43
1 44
1 45
1 46
1 47
1 48
1 49
1 50
2 0
2 1
2 2
2 3
2 4
2 5
2 6
2 7
2 8
2 9
2 10
2 11
2 12
...

output:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
2
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
3
3
3
4
5
6
...

result:

ok 100000 numbers