結果

問題 No.796 well known
ユーザー NoviNovi
提出日時 2019-11-03 18:29:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 47 ms / 2,000 ms
コード長 95 bytes
コンパイル時間 802 ms
コンパイル使用メモリ 10,572 KB
実行使用メモリ 16,032 KB
最終ジャッジ日時 2023-10-13 01:50:23
合計ジャッジ時間 2,075 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
7,836 KB
testcase_01 AC 16 ms
7,760 KB
testcase_02 AC 15 ms
7,840 KB
testcase_03 AC 16 ms
7,836 KB
testcase_04 AC 40 ms
14,048 KB
testcase_05 AC 42 ms
14,860 KB
testcase_06 AC 47 ms
16,028 KB
testcase_07 AC 22 ms
9,664 KB
testcase_08 AC 42 ms
14,928 KB
testcase_09 AC 33 ms
12,256 KB
testcase_10 AC 46 ms
15,992 KB
testcase_11 AC 20 ms
9,000 KB
testcase_12 AC 30 ms
11,512 KB
testcase_13 AC 39 ms
14,000 KB
testcase_14 AC 26 ms
10,776 KB
testcase_15 AC 30 ms
11,904 KB
testcase_16 AC 46 ms
16,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
ans=[1]
for i in range(1,n):
    ans.append(3)
t=" ".join(map(str,ans))
print(t)
0