結果

問題 No.1108 移調
ユーザー U SU S
提出日時 2020-07-10 21:22:59
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 207 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 86,912 KB
実行使用メモリ 71,472 KB
最終ジャッジ日時 2023-08-01 16:04:44
合計ジャッジ時間 2,981 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
71,264 KB
testcase_01 AC 71 ms
71,068 KB
testcase_02 AC 72 ms
71,296 KB
testcase_03 AC 73 ms
71,340 KB
testcase_04 AC 75 ms
71,380 KB
testcase_05 AC 72 ms
71,468 KB
testcase_06 AC 72 ms
71,068 KB
testcase_07 AC 72 ms
71,376 KB
testcase_08 AC 72 ms
71,316 KB
testcase_09 AC 73 ms
71,128 KB
testcase_10 AC 72 ms
71,376 KB
testcase_11 AC 73 ms
71,300 KB
testcase_12 AC 73 ms
71,116 KB
testcase_13 AC 75 ms
71,372 KB
testcase_14 AC 72 ms
71,056 KB
testcase_15 AC 71 ms
71,064 KB
testcase_16 AC 72 ms
71,068 KB
testcase_17 AC 71 ms
71,416 KB
testcase_18 AC 73 ms
71,328 KB
testcase_19 AC 72 ms
71,236 KB
testcase_20 AC 72 ms
71,472 KB
testcase_21 AC 78 ms
71,464 KB
testcase_22 AC 72 ms
71,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# a,b,c,d = map(int,input().split())
# if a < b and c > d:
#     print("YES")
# else:print("NO")

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