結果

問題 No.796 well known
ユーザー nanaenanae
提出日時 2019-03-16 11:48:59
言語 Python3
(3.11.6 + numpy 1.26.0 + scipy 1.11.3)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 42 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 10,664 KB
実行使用メモリ 9,944 KB
最終ジャッジ日時 2023-09-14 15:10:34
合計ジャッジ時間 1,956 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 18 ms
7,768 KB
testcase_01 AC 16 ms
7,740 KB
testcase_02 AC 15 ms
7,816 KB
testcase_03 AC 16 ms
7,860 KB
testcase_04 AC 44 ms
9,456 KB
testcase_05 AC 48 ms
9,540 KB
testcase_06 AC 54 ms
9,772 KB
testcase_07 AC 24 ms
8,584 KB
testcase_08 AC 49 ms
9,500 KB
testcase_09 AC 37 ms
8,964 KB
testcase_10 AC 54 ms
9,944 KB
testcase_11 AC 21 ms
8,480 KB
testcase_12 AC 33 ms
8,964 KB
testcase_13 AC 45 ms
9,336 KB
testcase_14 AC 29 ms
8,804 KB
testcase_15 AC 34 ms
9,052 KB
testcase_16 AC 54 ms
9,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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