結果

問題 No.796 well known
ユーザー s_shoheis_shohei
提出日時 2020-05-04 19:24:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 103 ms / 2,000 ms
コード長 74 bytes
コンパイル時間 1,070 ms
コンパイル使用メモリ 86,928 KB
実行使用メモリ 85,608 KB
最終ジャッジ日時 2023-09-07 02:29:02
合計ジャッジ時間 3,373 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
71,024 KB
testcase_01 AC 76 ms
71,024 KB
testcase_02 AC 78 ms
71,248 KB
testcase_03 AC 80 ms
71,168 KB
testcase_04 AC 102 ms
83,592 KB
testcase_05 AC 98 ms
84,248 KB
testcase_06 AC 99 ms
85,608 KB
testcase_07 AC 87 ms
77,660 KB
testcase_08 AC 97 ms
84,280 KB
testcase_09 AC 91 ms
80,896 KB
testcase_10 AC 100 ms
85,576 KB
testcase_11 AC 85 ms
76,636 KB
testcase_12 AC 91 ms
79,564 KB
testcase_13 AC 96 ms
82,564 KB
testcase_14 AC 89 ms
78,576 KB
testcase_15 AC 91 ms
80,204 KB
testcase_16 AC 103 ms
85,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
ans=[1]
for i in range(n-1):
    ans.append(3)
print(*ans)
0