結果

問題 No.796 well known
ユーザー souta-1326souta-1326
提出日時 2022-07-22 15:46:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 38 bytes
コンパイル時間 442 ms
コンパイル使用メモリ 87,044 KB
実行使用メモリ 80,708 KB
最終ジャッジ日時 2023-09-17 01:01:54
合計ジャッジ時間 2,980 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
71,428 KB
testcase_01 AC 69 ms
71,228 KB
testcase_02 AC 70 ms
71,288 KB
testcase_03 AC 69 ms
71,492 KB
testcase_04 AC 86 ms
79,764 KB
testcase_05 AC 88 ms
80,176 KB
testcase_06 AC 89 ms
80,620 KB
testcase_07 AC 79 ms
77,340 KB
testcase_08 AC 88 ms
79,880 KB
testcase_09 AC 82 ms
78,424 KB
testcase_10 AC 89 ms
80,484 KB
testcase_11 AC 78 ms
76,292 KB
testcase_12 AC 78 ms
78,116 KB
testcase_13 AC 84 ms
79,568 KB
testcase_14 AC 80 ms
77,608 KB
testcase_15 AC 82 ms
78,348 KB
testcase_16 AC 88 ms
80,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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