結果

問題 No.796 well known
ユーザー toyuzukotoyuzuko
提出日時 2020-05-14 22:22:04
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 54 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 13,160 KB
最終ジャッジ日時 2024-09-16 03:05:02
合計ジャッジ時間 1,987 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,496 KB
testcase_01 AC 24 ms
10,496 KB
testcase_02 AC 25 ms
10,496 KB
testcase_03 AC 25 ms
10,496 KB
testcase_04 AC 65 ms
12,584 KB
testcase_05 AC 64 ms
12,772 KB
testcase_06 AC 75 ms
13,032 KB
testcase_07 AC 35 ms
11,264 KB
testcase_08 AC 66 ms
12,648 KB
testcase_09 AC 54 ms
11,900 KB
testcase_10 AC 75 ms
13,148 KB
testcase_11 AC 31 ms
11,264 KB
testcase_12 AC 46 ms
11,696 KB
testcase_13 AC 63 ms
12,704 KB
testcase_14 AC 44 ms
11,480 KB
testcase_15 AC 50 ms
11,728 KB
testcase_16 AC 78 ms
13,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
res = [3] * (N - 1) + [1]
print(*res)
0