結果

問題 No.796 well known
ユーザー Maboy
提出日時 2021-06-23 17:39:15
言語 Swift
(6.0.3)
結果
AC  
実行時間 23 ms / 2,000 ms
コード長 122 bytes
コンパイル時間 8,881 ms
コンパイル使用メモリ 125,864 KB
実行使用メモリ 11,400 KB
最終ジャッジ日時 2024-06-24 17:48:45
合計ジャッジ時間 10,320 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 15
権限があれば一括ダウンロードができます

ソースコード

diff #

let n = Int(readLine()!)!
var l = [1] + [Int](repeating: 3, count: n - 1)
print(l.map{String($0)}.joined(separator: " "))
0