結果

問題 No.836 じょうよ
ユーザー kk
提出日時 2020-05-30 20:12:17
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 122 ms / 1,000 ms
コード長 535 bytes
コンパイル時間 1,611 ms
コンパイル使用メモリ 166,164 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-08 01:42:42
合計ジャッジ時間 4,574 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 41
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define REP(i,n) for(int i=0; i<(int)(n); i++)
#define FOR(i,b,e) for (int i=(int)(b); i<(int)(e); i++)
#define ALL(x) (x).begin(), (x).end()

const double PI = acos(-1);

int n;
long long l, r;
long long d[100000];

int main() {
  ios_base::sync_with_stdio(0);
  cin.tie(0);

  cin >> l >> r;
  cin >> n;
  
  --l;
  REP (i, n) d[i] += r / n;
  REP (i, r % n + 1) d[i]++;
  REP (i, n) d[i] -= l / n;
  REP (i, l % n + 1) d[i]--;
  
  REP (i, n)
    cout << d[i] << endl;

  return 0;
}
0