結果

問題 No.796 well known
ユーザー convexineqconvexineq
提出日時 2021-03-18 23:59:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 46 bytes
コンパイル時間 471 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 79,744 KB
最終ジャッジ日時 2024-11-17 06:16:32
合計ジャッジ時間 2,271 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 35 ms
51,456 KB
testcase_02 AC 35 ms
51,712 KB
testcase_03 AC 37 ms
51,712 KB
testcase_04 AC 61 ms
76,544 KB
testcase_05 AC 64 ms
78,592 KB
testcase_06 AC 67 ms
79,232 KB
testcase_07 AC 51 ms
64,768 KB
testcase_08 AC 67 ms
78,464 KB
testcase_09 AC 58 ms
71,680 KB
testcase_10 AC 67 ms
79,104 KB
testcase_11 AC 49 ms
62,592 KB
testcase_12 AC 57 ms
69,632 KB
testcase_13 AC 67 ms
76,416 KB
testcase_14 AC 54 ms
67,584 KB
testcase_15 AC 58 ms
70,528 KB
testcase_16 AC 71 ms
79,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = [1] + [3]*(n-1)
print(*a)
0