https://atcoder.jp/contests/aising2020/tasks/aising2020_a
解説
https://atcoder.jp/contests/aising2020/submissions/15184641
愚直にやる。
[L,R]の範囲は100通りくらいなので、全探索して、dの倍数の個数を数えればいい。
int L, R, d; //--------------------------------------------------------------------------------------------------- void _main() { cin >> L >> R >> d; int ans = 0; rep(x, L, R + 1) if (x % d == 0) ans++; cout << ans << endl; }