結果

問題 No.796 well known
ユーザー wesoweeenwesoweeen
提出日時 2021-11-23 23:09:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 112 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 10,584 KB
実行使用メモリ 10,704 KB
最終ジャッジ日時 2023-09-08 03:43:47
合計ジャッジ時間 2,256 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,740 KB
testcase_01 AC 16 ms
7,820 KB
testcase_02 AC 15 ms
7,856 KB
testcase_03 AC 15 ms
7,852 KB
testcase_04 AC 46 ms
10,060 KB
testcase_05 AC 48 ms
10,440 KB
testcase_06 AC 55 ms
10,644 KB
testcase_07 AC 24 ms
8,712 KB
testcase_08 AC 49 ms
10,300 KB
testcase_09 AC 36 ms
9,556 KB
testcase_10 AC 55 ms
10,704 KB
testcase_11 AC 20 ms
8,840 KB
testcase_12 AC 33 ms
9,208 KB
testcase_13 AC 45 ms
10,012 KB
testcase_14 AC 29 ms
9,260 KB
testcase_15 AC 34 ms
9,512 KB
testcase_16 AC 55 ms
10,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N = int(input())
    n = [1] + [3] * (N - 1)
    print(*n)
if __name__ == "__main__":
    main()
0