結果

問題 No.1108 移調
ユーザー tikitaka1201tikitaka1201
提出日時 2020-07-11 11:15:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 118 bytes
コンパイル時間 1,215 ms
コンパイル使用メモリ 86,764 KB
実行使用メモリ 71,356 KB
最終ジャッジ日時 2023-08-02 21:59:41
合計ジャッジ時間 3,556 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
71,040 KB
testcase_01 AC 67 ms
71,168 KB
testcase_02 AC 67 ms
71,328 KB
testcase_03 AC 65 ms
71,092 KB
testcase_04 AC 65 ms
71,288 KB
testcase_05 AC 65 ms
71,324 KB
testcase_06 AC 67 ms
71,200 KB
testcase_07 AC 66 ms
71,208 KB
testcase_08 AC 66 ms
71,332 KB
testcase_09 AC 63 ms
71,040 KB
testcase_10 AC 67 ms
71,116 KB
testcase_11 AC 68 ms
71,232 KB
testcase_12 AC 65 ms
71,252 KB
testcase_13 AC 69 ms
71,116 KB
testcase_14 AC 65 ms
71,324 KB
testcase_15 AC 67 ms
71,216 KB
testcase_16 AC 65 ms
71,288 KB
testcase_17 AC 65 ms
71,116 KB
testcase_18 AC 65 ms
71,160 KB
testcase_19 AC 68 ms
71,324 KB
testcase_20 AC 66 ms
71,356 KB
testcase_21 AC 66 ms
71,164 KB
testcase_22 AC 68 ms
71,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,h=map(int,input().split())
*a,=map(int,input().split())
ans=[]
for i in range(n):
    ans.append(a[i]+h)
print(*ans)
0