AtCoder ABC 001: Interval Merging and Wind Classification Problems
Problem A
Subtract two itnegers and output the result.
int a, b;
cin >> a >> b;
cout << a - b << endl;
Problem B
Problem Statement
Given an integer (n), compute the value of (F(n)):
$$F(n) = \begin{cases} 0 & n < 100 \ \lfloor \frac{n}{100} \rfloor & 100 \leq n \leq 5000 \ \lfloor \frac{n}{1000} \rfloor + 50 ...
Posted on Fri, 26 Jun 2026 17:23:41 +0000 by gamesmad