結果

問題 No.796 well known
ユーザー wonda_t_coffeewonda_t_coffee
提出日時 2020-02-04 09:54:43
言語 Ruby
(3.3.0)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 57 bytes
コンパイル時間 40 ms
コンパイル使用メモリ 11,868 KB
実行使用メモリ 17,388 KB
最終ジャッジ日時 2023-10-20 11:27:23
合計ジャッジ時間 3,252 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
16,060 KB
testcase_01 AC 88 ms
16,060 KB
testcase_02 AC 87 ms
16,060 KB
testcase_03 AC 88 ms
16,060 KB
testcase_04 AC 115 ms
17,060 KB
testcase_05 AC 122 ms
17,156 KB
testcase_06 AC 124 ms
17,384 KB
testcase_07 AC 97 ms
16,428 KB
testcase_08 AC 117 ms
17,160 KB
testcase_09 AC 108 ms
16,808 KB
testcase_10 AC 122 ms
17,372 KB
testcase_11 AC 94 ms
16,328 KB
testcase_12 AC 105 ms
16,692 KB
testcase_13 AC 113 ms
17,044 KB
testcase_14 AC 101 ms
16,564 KB
testcase_15 AC 105 ms
16,740 KB
testcase_16 AC 122 ms
17,388 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.chomp.to_i
puts ([3]*(n-1)).unshift(1).join(' ')
0