結果

問題 No.796 well known
ユーザー hiragnhiragn
提出日時 2022-11-10 21:55:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 119 bytes
コンパイル時間 100 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 13,300 KB
最終ジャッジ日時 2024-07-26 12:17:12
合計ジャッジ時間 1,952 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 64 ms
12,716 KB
testcase_05 AC 67 ms
12,908 KB
testcase_06 AC 78 ms
13,300 KB
testcase_07 AC 39 ms
11,392 KB
testcase_08 AC 72 ms
12,912 KB
testcase_09 AC 54 ms
12,296 KB
testcase_10 AC 76 ms
13,216 KB
testcase_11 AC 34 ms
11,264 KB
testcase_12 AC 50 ms
12,084 KB
testcase_13 AC 65 ms
12,708 KB
testcase_14 AC 44 ms
11,744 KB
testcase_15 AC 51 ms
11,988 KB
testcase_16 AC 75 ms
13,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    n = int(input())
    ans = [1] + [3] * (n - 1)
    print(*ans)


if __name__ == "__main__":
    main()
0