結果

問題 No.796 well known
ユーザー 双六双六
提出日時 2019-04-13 03:11:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 26 ms / 2,000 ms
コード長 83 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 10,636 KB
実行使用メモリ 9,388 KB
最終ジャッジ日時 2023-10-13 09:29:09
合計ジャッジ時間 2,012 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,776 KB
testcase_01 AC 15 ms
7,792 KB
testcase_02 AC 15 ms
7,968 KB
testcase_03 AC 16 ms
7,924 KB
testcase_04 AC 24 ms
8,952 KB
testcase_05 AC 25 ms
8,980 KB
testcase_06 AC 26 ms
9,376 KB
testcase_07 AC 18 ms
8,336 KB
testcase_08 AC 25 ms
8,992 KB
testcase_09 AC 21 ms
8,756 KB
testcase_10 AC 26 ms
9,388 KB
testcase_11 AC 16 ms
8,228 KB
testcase_12 AC 20 ms
8,640 KB
testcase_13 AC 23 ms
8,956 KB
testcase_14 AC 19 ms
8,500 KB
testcase_15 AC 20 ms
8,632 KB
testcase_16 AC 26 ms
9,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
L = ["1"]
for i in range(N - 1):
	L.append("3")
print(" ".join(L))
0