結果

問題 No.796 well known
ユーザー edamatedamat
提出日時 2019-03-15 22:03:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 160 bytes
コンパイル時間 120 ms
コンパイル使用メモリ 10,712 KB
実行使用メモリ 9,232 KB
最終ジャッジ日時 2023-09-14 13:36:25
合計ジャッジ時間 2,334 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,844 KB
testcase_01 AC 15 ms
7,788 KB
testcase_02 AC 16 ms
7,772 KB
testcase_03 AC 16 ms
7,840 KB
testcase_04 AC 78 ms
8,952 KB
testcase_05 AC 83 ms
9,060 KB
testcase_06 AC 97 ms
9,108 KB
testcase_07 AC 35 ms
8,536 KB
testcase_08 AC 84 ms
9,064 KB
testcase_09 AC 60 ms
8,732 KB
testcase_10 AC 97 ms
9,204 KB
testcase_11 AC 26 ms
8,536 KB
testcase_12 AC 52 ms
8,708 KB
testcase_13 AC 80 ms
9,012 KB
testcase_14 AC 44 ms
8,684 KB
testcase_15 AC 55 ms
8,812 KB
testcase_16 AC 98 ms
9,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

ans = [3] * (N - 1)
ans.append(1)
for num, i in enumerate(ans):
    if num < len(ans)-1:
        print(i, end=' ')
    else:
        print(i)
0