結果

問題 No.796 well known
ユーザー htkbhtkb
提出日時 2019-03-15 21:25:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 40 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 10,604 KB
実行使用メモリ 10,040 KB
最終ジャッジ日時 2023-09-14 12:51:37
合計ジャッジ時間 1,879 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,932 KB
testcase_01 AC 16 ms
7,860 KB
testcase_02 AC 18 ms
7,844 KB
testcase_03 AC 17 ms
7,844 KB
testcase_04 AC 46 ms
9,432 KB
testcase_05 AC 48 ms
9,576 KB
testcase_06 AC 56 ms
10,040 KB
testcase_07 AC 24 ms
8,552 KB
testcase_08 AC 48 ms
9,496 KB
testcase_09 AC 37 ms
9,020 KB
testcase_10 AC 54 ms
9,852 KB
testcase_11 AC 21 ms
8,504 KB
testcase_12 AC 33 ms
8,888 KB
testcase_13 AC 45 ms
9,520 KB
testcase_14 AC 28 ms
8,804 KB
testcase_15 AC 35 ms
9,100 KB
testcase_16 AC 54 ms
9,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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