結果

問題 No.1090 ソーシャルディスタンス / Social Distance
ユーザー iqueue02
提出日時 2020-06-25 17:19:05
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 572 bytes
コンパイル時間 1,787 ms
コンパイル使用メモリ 193,760 KB
最終ジャッジ日時 2025-01-11 10:14:08
ジャッジサーバーID
(参考情報)
judge5 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 1
other AC * 13 WA * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int i = 0; i < (n);i++)
#define sz(x) int(x.size())
typedef long long ll;
typedef long double ld;
typedef pair<int,int> P;
typedef pair<ll, int> PL;
constexpr int INF = 2e9;

int main() {
  int n, d;
  cin >> n >> d;
  vector<int> a(n, 0);
  rep(i,n - 1) cin >> a[i + 1];

  for (int i = 1; i < n; i++) {
    int l = a[i] - a[i - 1];
    if (l >= d) continue;
    a[i] = a[i - 1] + d;
  }
  for (int i = 0; i < n; i++) {
    cout << a[i];
    if (i < n - 1) cout << " ";
  }
  cout << endl;
  return 0;
} 
0