結果

問題 No.796 well known
ユーザー 👑 KazunKazun
提出日時 2020-10-03 03:38:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 40 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 86,824 KB
実行使用メモリ 80,496 KB
最終ジャッジ日時 2023-09-25 04:39:46
合計ジャッジ時間 3,363 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
71,364 KB
testcase_01 AC 71 ms
71,256 KB
testcase_02 AC 71 ms
71,440 KB
testcase_03 AC 71 ms
71,244 KB
testcase_04 AC 93 ms
79,592 KB
testcase_05 AC 93 ms
80,124 KB
testcase_06 AC 91 ms
80,420 KB
testcase_07 AC 81 ms
77,152 KB
testcase_08 AC 92 ms
80,044 KB
testcase_09 AC 84 ms
78,372 KB
testcase_10 AC 91 ms
80,496 KB
testcase_11 AC 80 ms
76,460 KB
testcase_12 AC 85 ms
78,128 KB
testcase_13 AC 92 ms
79,604 KB
testcase_14 AC 85 ms
77,656 KB
testcase_15 AC 85 ms
78,108 KB
testcase_16 AC 94 ms
80,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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