結果

問題 No.1108 移調
ユーザー Maboy
提出日時 2021-06-19 23:16:52
言語 Swift
(6.0.3)
結果
AC  
実行時間 9 ms / 2,000 ms
コード長 169 bytes
コンパイル時間 907 ms
コンパイル使用メモリ 127,352 KB
実行使用メモリ 9,344 KB
最終ジャッジ日時 2024-06-22 22:20:46
合計ジャッジ時間 1,917 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20
権限があれば一括ダウンロードができます

ソースコード

diff #

let n = readLine()!.split(separator: " ").map{Int($0)!}
let t = readLine()!.split(separator: " ").map{Int($0)!}
for i in t{
    print(i + n[1],terminator: " ")
}
print()
0