結果

問題 No.836 じょうよ
ユーザー YamaKasaYamaKasa
提出日時 2019-06-14 21:32:44
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 10 ms / 1,000 ms
コード長 284 bytes
コンパイル時間 1,559 ms
コンパイル使用メモリ 165,192 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-09 00:28:04
合計ジャッジ時間 2,992 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 41
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
int main() {
  cin.tie(0);
  ios::sync_with_stdio(false);
  ll l, r, n;
  cin >> l >> r >> n;
  for (int i = 0; i < n; i++) {
    ll k = (r - i + n) / n - (l - i + n - 1) / n;
    cout << k << "\n";
  }
  return 0;
}
0