結果

問題 No.796 well known
ユーザー convexineqconvexineq
提出日時 2021-03-18 23:59:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 68 ms / 2,000 ms
コード長 46 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 79,744 KB
最終ジャッジ日時 2024-04-28 13:55:55
合計ジャッジ時間 1,982 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 40 ms
51,456 KB
testcase_03 AC 36 ms
51,840 KB
testcase_04 AC 59 ms
76,800 KB
testcase_05 AC 66 ms
78,848 KB
testcase_06 AC 65 ms
79,744 KB
testcase_07 AC 47 ms
64,640 KB
testcase_08 AC 61 ms
78,464 KB
testcase_09 AC 56 ms
71,936 KB
testcase_10 AC 65 ms
79,616 KB
testcase_11 AC 48 ms
62,848 KB
testcase_12 AC 53 ms
69,632 KB
testcase_13 AC 59 ms
76,160 KB
testcase_14 AC 50 ms
67,456 KB
testcase_15 AC 56 ms
70,528 KB
testcase_16 AC 68 ms
79,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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