結果

問題 No.796 well known
ユーザー aqua_tenhouaqua_tenhou
提出日時 2021-06-20 23:04:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 75 ms / 2,000 ms
コード長 57 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 80,496 KB
最終ジャッジ日時 2024-06-22 22:43:18
合計ジャッジ時間 2,135 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,712 KB
testcase_01 AC 36 ms
51,584 KB
testcase_02 AC 37 ms
51,456 KB
testcase_03 AC 37 ms
52,224 KB
testcase_04 AC 54 ms
77,312 KB
testcase_05 AC 65 ms
80,000 KB
testcase_06 AC 75 ms
80,384 KB
testcase_07 AC 54 ms
64,896 KB
testcase_08 AC 60 ms
79,488 KB
testcase_09 AC 53 ms
72,192 KB
testcase_10 AC 60 ms
80,256 KB
testcase_11 AC 45 ms
62,848 KB
testcase_12 AC 51 ms
70,016 KB
testcase_13 AC 55 ms
77,312 KB
testcase_14 AC 49 ms
67,456 KB
testcase_15 AC 56 ms
71,296 KB
testcase_16 AC 66 ms
80,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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