結果

問題 No.796 well known
ユーザー KazunKazun
提出日時 2020-10-03 03:38:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 40 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 79,652 KB
最終ジャッジ日時 2024-07-18 04:02:15
合計ジャッジ時間 2,093 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,868 KB
testcase_01 AC 35 ms
52,024 KB
testcase_02 AC 35 ms
52,612 KB
testcase_03 AC 36 ms
52,940 KB
testcase_04 AC 56 ms
76,600 KB
testcase_05 AC 59 ms
78,376 KB
testcase_06 AC 61 ms
79,304 KB
testcase_07 AC 47 ms
65,976 KB
testcase_08 AC 56 ms
78,324 KB
testcase_09 AC 49 ms
72,416 KB
testcase_10 AC 59 ms
79,324 KB
testcase_11 AC 45 ms
63,128 KB
testcase_12 AC 51 ms
69,544 KB
testcase_13 AC 52 ms
76,340 KB
testcase_14 AC 46 ms
68,348 KB
testcase_15 AC 49 ms
71,464 KB
testcase_16 AC 58 ms
79,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
X=[1]+[3]*(N-1)
print(*X)
0