結果

問題 No.796 well known
ユーザー MaboyMaboy
提出日時 2021-06-23 17:39:15
言語 Swift
(5.10.0)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
9,216 KB
testcase_01 AC 9 ms
9,216 KB
testcase_02 AC 9 ms
9,088 KB
testcase_03 AC 9 ms
9,344 KB
testcase_04 AC 20 ms
10,692 KB
testcase_05 AC 21 ms
10,884 KB
testcase_06 AC 23 ms
11,268 KB
testcase_07 AC 12 ms
9,424 KB
testcase_08 AC 20 ms
11,008 KB
testcase_09 AC 17 ms
10,268 KB
testcase_10 AC 23 ms
11,384 KB
testcase_11 AC 10 ms
9,532 KB
testcase_12 AC 15 ms
9,928 KB
testcase_13 AC 19 ms
10,556 KB
testcase_14 AC 13 ms
9,716 KB
testcase_15 AC 16 ms
9,960 KB
testcase_16 AC 23 ms
11,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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