結果

問題 No.796 well known
ユーザー NatsubiSoganNatsubiSogan
提出日時 2021-02-03 00:46:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 54 bytes
コンパイル時間 77 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 13,164 KB
最終ジャッジ日時 2024-06-29 23:59:15
合計ジャッジ時間 2,111 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,368 KB
testcase_01 AC 29 ms
10,496 KB
testcase_02 AC 28 ms
10,368 KB
testcase_03 AC 29 ms
10,496 KB
testcase_04 AC 67 ms
12,584 KB
testcase_05 AC 72 ms
12,648 KB
testcase_06 AC 79 ms
13,164 KB
testcase_07 AC 39 ms
11,264 KB
testcase_08 AC 73 ms
12,780 KB
testcase_09 AC 57 ms
12,156 KB
testcase_10 AC 81 ms
13,024 KB
testcase_11 AC 35 ms
11,136 KB
testcase_12 AC 51 ms
11,696 KB
testcase_13 AC 67 ms
12,448 KB
testcase_14 AC 46 ms
11,740 KB
testcase_15 AC 53 ms
11,728 KB
testcase_16 AC 80 ms
13,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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