結果
| 問題 | No.1108 移調 |
| コンテスト | |
| ユーザー |
shiomusubi496
|
| 提出日時 | 2020-07-23 23:10:09 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| コード長 | 222 bytes |
| 記録 | |
| コンパイル時間 | 884 ms |
| コンパイル使用メモリ | 182,616 KB |
| 実行使用メモリ | 7,844 KB |
| 最終ジャッジ日時 | 2026-03-09 05:58:56 |
| 合計ジャッジ時間 | 1,740 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 20 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
int main(){
int N,H;
cin>>N>>H;
for(int i=0;i<N;i++){
int T;
cin>>T;
cout<<T+H;
if(i==N-1)cout<<'\n';
else cout<<' ';
}
}
shiomusubi496