結果

問題 No.796 well known
ユーザー GrayCoderGrayCoder
提出日時 2019-03-15 21:45:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 149 bytes
コンパイル時間 461 ms
コンパイル使用メモリ 10,656 KB
実行使用メモリ 10,704 KB
最終ジャッジ日時 2023-09-14 13:17:01
合計ジャッジ時間 2,142 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,740 KB
testcase_01 AC 16 ms
7,816 KB
testcase_02 AC 16 ms
7,816 KB
testcase_03 AC 16 ms
7,740 KB
testcase_04 AC 45 ms
10,200 KB
testcase_05 AC 48 ms
10,224 KB
testcase_06 AC 54 ms
10,600 KB
testcase_07 AC 24 ms
8,832 KB
testcase_08 AC 47 ms
10,088 KB
testcase_09 AC 37 ms
9,540 KB
testcase_10 AC 53 ms
10,616 KB
testcase_11 AC 21 ms
8,732 KB
testcase_12 AC 32 ms
9,360 KB
testcase_13 AC 44 ms
10,104 KB
testcase_14 AC 28 ms
8,996 KB
testcase_15 AC 34 ms
9,244 KB
testcase_16 AC 54 ms
10,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin

def main():
    N = int(input())

    ans = [3] * N
    ans[-1] += 1
    print(*ans)

input = lambda: stdin.readline()
main()
0