結果

問題 No.796 well known
ユーザー Takuya NoguchiTakuya Noguchi
提出日時 2020-11-29 21:58:37
言語 Ruby
(3.3.0)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 51 bytes
コンパイル時間 389 ms
コンパイル使用メモリ 11,436 KB
実行使用メモリ 16,932 KB
最終ジャッジ日時 2023-10-11 02:38:24
合計ジャッジ時間 3,531 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
15,288 KB
testcase_01 AC 82 ms
15,304 KB
testcase_02 AC 82 ms
15,280 KB
testcase_03 AC 82 ms
15,036 KB
testcase_04 AC 111 ms
16,196 KB
testcase_05 AC 116 ms
16,604 KB
testcase_06 AC 121 ms
16,840 KB
testcase_07 AC 92 ms
15,720 KB
testcase_08 AC 114 ms
16,464 KB
testcase_09 AC 102 ms
15,836 KB
testcase_10 AC 119 ms
16,732 KB
testcase_11 AC 88 ms
15,636 KB
testcase_12 AC 100 ms
15,888 KB
testcase_13 AC 109 ms
16,184 KB
testcase_14 AC 97 ms
15,688 KB
testcase_15 AC 103 ms
16,028 KB
testcase_16 AC 121 ms
16,932 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i

puts ([3] * (N - 1) + [1]).join(' ')
0