結果

問題 No.796 well known
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-02-03 00:46:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 54 bytes
コンパイル時間 99 ms
コンパイル使用メモリ 10,716 KB
実行使用メモリ 10,792 KB
最終ジャッジ日時 2023-09-12 11:30:52
合計ジャッジ時間 2,305 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,872 KB
testcase_01 AC 16 ms
7,904 KB
testcase_02 AC 16 ms
7,796 KB
testcase_03 AC 14 ms
7,804 KB
testcase_04 AC 45 ms
9,952 KB
testcase_05 AC 48 ms
10,332 KB
testcase_06 AC 55 ms
10,712 KB
testcase_07 AC 24 ms
8,816 KB
testcase_08 AC 48 ms
10,360 KB
testcase_09 AC 36 ms
9,512 KB
testcase_10 AC 54 ms
10,656 KB
testcase_11 AC 20 ms
8,852 KB
testcase_12 AC 32 ms
9,288 KB
testcase_13 AC 45 ms
10,044 KB
testcase_14 AC 29 ms
9,080 KB
testcase_15 AC 34 ms
9,652 KB
testcase_16 AC 54 ms
10,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
ans = [1] + [3] * (n - 1)
print(*ans)
0