結果

問題 No.796 well known
ユーザー wesoweeenwesoweeen
提出日時 2021-11-23 23:09:59
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 112 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 13,436 KB
最終ジャッジ日時 2024-06-25 20:55:45
合計ジャッジ時間 2,288 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 67 ms
12,724 KB
testcase_05 AC 72 ms
12,920 KB
testcase_06 AC 81 ms
13,312 KB
testcase_07 AC 39 ms
11,392 KB
testcase_08 AC 71 ms
13,048 KB
testcase_09 AC 56 ms
12,172 KB
testcase_10 AC 80 ms
13,292 KB
testcase_11 AC 36 ms
11,264 KB
testcase_12 AC 52 ms
11,972 KB
testcase_13 AC 66 ms
12,724 KB
testcase_14 AC 47 ms
11,764 KB
testcase_15 AC 53 ms
12,124 KB
testcase_16 AC 81 ms
13,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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