#include <bits/stdc++.h>
using namespace std;
int main() {
int n, m;
cin >> n >> m;
int b[m], p[m];
for (int i = 0; i < m; i++) {
cin >> b[i] >> p[i];
}
int ans = 0;
for (int i = 0; i < m; i++) {
if (b[i] == 0) {
ans++;
} else {
int minJumps = INT_MAX;
for (int j = 0; j < m; j++) {
if (b[j] == 0) {
minJumps = min(minJumps, abs(b[i] - b[j]) / p[j]);
}
}
ans += minJumps;
}
}
cout << ans << endl;
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
212 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |