結果

問題 No.796 well known
ユーザー toyuzukotoyuzuko
提出日時 2020-05-14 22:22:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 54 bytes
コンパイル時間 468 ms
コンパイル使用メモリ 10,572 KB
実行使用メモリ 10,800 KB
最終ジャッジ日時 2023-10-14 07:57:18
合計ジャッジ時間 2,589 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
7,840 KB
testcase_01 AC 16 ms
7,948 KB
testcase_02 AC 15 ms
7,768 KB
testcase_03 AC 16 ms
7,840 KB
testcase_04 AC 46 ms
10,012 KB
testcase_05 AC 49 ms
10,284 KB
testcase_06 AC 56 ms
10,800 KB
testcase_07 AC 25 ms
8,720 KB
testcase_08 AC 50 ms
10,400 KB
testcase_09 AC 38 ms
9,536 KB
testcase_10 AC 55 ms
10,736 KB
testcase_11 AC 21 ms
8,724 KB
testcase_12 AC 34 ms
9,208 KB
testcase_13 AC 46 ms
9,964 KB
testcase_14 AC 29 ms
9,284 KB
testcase_15 AC 35 ms
9,640 KB
testcase_16 AC 56 ms
10,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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