結果

問題 No.796 well known
ユーザー foumifoumi
提出日時 2019-04-06 18:15:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 25 ms / 2,000 ms
コード長 86 bytes
コンパイル時間 453 ms
コンパイル使用メモリ 10,696 KB
実行使用メモリ 9,324 KB
最終ジャッジ日時 2023-09-06 16:04:15
合計ジャッジ時間 2,215 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
7,824 KB
testcase_01 AC 15 ms
7,812 KB
testcase_02 AC 15 ms
7,748 KB
testcase_03 AC 14 ms
7,824 KB
testcase_04 AC 22 ms
9,044 KB
testcase_05 AC 23 ms
9,052 KB
testcase_06 AC 25 ms
9,324 KB
testcase_07 AC 17 ms
8,216 KB
testcase_08 AC 23 ms
8,928 KB
testcase_09 AC 20 ms
8,708 KB
testcase_10 AC 25 ms
9,196 KB
testcase_11 AC 16 ms
8,236 KB
testcase_12 AC 20 ms
8,468 KB
testcase_13 AC 23 ms
9,024 KB
testcase_14 AC 19 ms
8,404 KB
testcase_15 AC 20 ms
8,544 KB
testcase_16 AC 25 ms
9,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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