QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#817365#1983. CakesSGColinAC ✓0ms3944kbC++20240b2024-12-16 21:58:072024-12-16 21:58:08

Judging History

This is the latest submission verdict.

  • [2024-12-16 21:58:08]
  • Judged
  • Verdict: AC
  • Time: 0ms
  • Memory: 3944kb
  • [2024-12-16 21:58:07]
  • Submitted

answer

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

int main() {
	int n, ans = 1e9;
	int x, y;
	scanf("%d", &n);
	for (int i = 1; i <= n; ++i) {
		scanf("%d%d", &x, &y);
		ans = min(ans, y / x);
	}
	printf("%d\n", ans);
	return 0;
}

详细

Test #1:

score: 100
Accepted
time: 0ms
memory: 3748kb

input:

1
1 1

output:

1

result:

ok single line: '1'

Test #2:

score: 0
Accepted
time: 0ms
memory: 3856kb

input:

2
1 5000
5 10000

output:

2000

result:

ok single line: '2000'

Test #3:

score: 0
Accepted
time: 0ms
memory: 3944kb

input:

2
1 5000
6 10000

output:

1666

result:

ok single line: '1666'

Test #4:

score: 0
Accepted
time: 0ms
memory: 3768kb

input:

10
173 1561
416 3733
449 3063
1207 7353
520 3024
910 6063
687 4589
1779 9402
1115 5874
819 5083

output:

5

result:

ok single line: '5'

Test #5:

score: 0
Accepted
time: 0ms
memory: 3748kb

input:

10
336 3217
923 6730
568 5620
154 1446
1069 9055
976 5941
561 3259
474 3121
983 7153
739 4827

output:

5

result:

ok single line: '5'

Test #6:

score: 0
Accepted
time: 0ms
memory: 3944kb

input:

10
660 5741
983 9463
518 4992
1096 9177
713 6122
509 3658
463 3259
242 2284
195 1609
1130 8178

output:

7

result:

ok single line: '7'

Test #7:

score: 0
Accepted
time: 0ms
memory: 3868kb

input:

10
2 2815
1 1438
3 4158
5 6799
5 6638
3 5753
5 9420
2 4404
1 2165
1 2136

output:

1327

result:

ok single line: '1327'