結果

問題 No.796 well known
ユーザー gorugo30gorugo30
提出日時 2021-02-24 20:04:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 54 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 81,660 KB
実行使用メモリ 78,896 KB
最終ジャッジ日時 2023-10-25 01:12:54
合計ジャッジ時間 2,453 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,348 KB
testcase_01 AC 37 ms
53,348 KB
testcase_02 AC 37 ms
53,348 KB
testcase_03 AC 37 ms
53,348 KB
testcase_04 AC 56 ms
76,352 KB
testcase_05 AC 61 ms
78,236 KB
testcase_06 AC 63 ms
78,896 KB
testcase_07 AC 48 ms
64,796 KB
testcase_08 AC 61 ms
78,236 KB
testcase_09 AC 53 ms
72,204 KB
testcase_10 AC 63 ms
78,836 KB
testcase_11 AC 47 ms
63,956 KB
testcase_12 AC 51 ms
69,752 KB
testcase_13 AC 57 ms
76,116 KB
testcase_14 AC 52 ms
67,288 KB
testcase_15 AC 53 ms
71,960 KB
testcase_16 AC 65 ms
78,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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