結果

問題 No.1108 移調
ユーザー futamegawa
提出日時 2023-08-13 11:10:54
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 450 bytes
コンパイル時間 1,590 ms
コンパイル使用メモリ 169,960 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-21 05:34:03
合計ジャッジ時間 2,520 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using llu = long long unsigned;

vector<ll> dx = { 0, 0, -1, 1};
vector<ll> dy = {-1, 1,  0, 0};

#define MOD 1000000007
int main() {
    int N, H;
    cin >> N >> H;
    vector<int> T(N);
    for (int i=0; i<N; i++) { cin >> T[i]; }
    vector<int> ret(N);
    for (int i=0; i<N; i++) { ret[i] = T[i]+H; }
    for (auto x : ret) { cout << x << " "; } cout << endl;
    return 0;
}
0