結果

問題 No.796 well known
ユーザー 👑 H20H20
提出日時 2020-12-04 13:43:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 40 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 87,080 KB
実行使用メモリ 81,620 KB
最終ジャッジ日時 2023-10-13 02:00:16
合計ジャッジ時間 3,510 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
71,408 KB
testcase_01 AC 70 ms
71,208 KB
testcase_02 AC 69 ms
71,156 KB
testcase_03 AC 70 ms
71,456 KB
testcase_04 AC 88 ms
80,360 KB
testcase_05 AC 91 ms
80,716 KB
testcase_06 AC 92 ms
81,516 KB
testcase_07 AC 81 ms
77,640 KB
testcase_08 AC 91 ms
80,640 KB
testcase_09 AC 85 ms
79,024 KB
testcase_10 AC 90 ms
81,452 KB
testcase_11 AC 79 ms
76,400 KB
testcase_12 AC 83 ms
78,564 KB
testcase_13 AC 86 ms
80,364 KB
testcase_14 AC 80 ms
78,096 KB
testcase_15 AC 84 ms
78,660 KB
testcase_16 AC 91 ms
81,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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