結果

問題 No.796 well known
ユーザー lloyzlloyz
提出日時 2022-05-03 00:33:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 127 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 10,680 KB
実行使用メモリ 10,876 KB
最終ジャッジ日時 2023-09-14 21:49:21
合計ジャッジ時間 2,597 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
7,872 KB
testcase_01 AC 16 ms
7,836 KB
testcase_02 AC 15 ms
7,912 KB
testcase_03 AC 15 ms
7,824 KB
testcase_04 AC 53 ms
10,100 KB
testcase_05 AC 56 ms
10,292 KB
testcase_06 AC 64 ms
10,792 KB
testcase_07 AC 26 ms
8,888 KB
testcase_08 AC 58 ms
10,408 KB
testcase_09 AC 42 ms
9,516 KB
testcase_10 AC 64 ms
10,672 KB
testcase_11 AC 22 ms
8,792 KB
testcase_12 AC 38 ms
9,328 KB
testcase_13 AC 53 ms
10,100 KB
testcase_14 AC 32 ms
9,124 KB
testcase_15 AC 39 ms
9,536 KB
testcase_16 AC 65 ms
10,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())

ANS = []
for i in range(n):
    if i == 0:
        ANS.append(1)
    else:
        ANS.append(3)
print(*ANS)
0