結果

問題 No.796 well known
ユーザー aqua_tenhouaqua_tenhou
提出日時 2021-06-20 23:04:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 57 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 86,944 KB
実行使用メモリ 81,560 KB
最終ジャッジ日時 2023-09-05 01:44:23
合計ジャッジ時間 3,734 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
71,376 KB
testcase_01 AC 73 ms
71,324 KB
testcase_02 AC 73 ms
71,332 KB
testcase_03 AC 79 ms
71,304 KB
testcase_04 AC 95 ms
80,292 KB
testcase_05 AC 94 ms
80,692 KB
testcase_06 AC 96 ms
81,192 KB
testcase_07 AC 85 ms
77,620 KB
testcase_08 AC 93 ms
80,652 KB
testcase_09 AC 89 ms
79,008 KB
testcase_10 AC 96 ms
81,560 KB
testcase_11 AC 83 ms
76,424 KB
testcase_12 AC 87 ms
78,420 KB
testcase_13 AC 93 ms
80,144 KB
testcase_14 AC 87 ms
77,644 KB
testcase_15 AC 90 ms
78,548 KB
testcase_16 AC 98 ms
81,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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