結果

問題 No.796 well known
ユーザー OhnumaOhnuma
提出日時 2020-04-10 20:37:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 48 bytes
コンパイル時間 97 ms
コンパイル使用メモリ 10,528 KB
実行使用メモリ 10,820 KB
最終ジャッジ日時 2023-10-13 17:02:58
合計ジャッジ時間 2,439 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,804 KB
testcase_01 AC 15 ms
7,804 KB
testcase_02 AC 15 ms
7,792 KB
testcase_03 AC 15 ms
7,720 KB
testcase_04 AC 45 ms
9,936 KB
testcase_05 AC 49 ms
10,356 KB
testcase_06 AC 56 ms
10,772 KB
testcase_07 AC 24 ms
8,716 KB
testcase_08 AC 49 ms
10,328 KB
testcase_09 AC 38 ms
9,452 KB
testcase_10 AC 54 ms
10,700 KB
testcase_11 AC 21 ms
8,656 KB
testcase_12 AC 33 ms
9,156 KB
testcase_13 AC 45 ms
9,980 KB
testcase_14 AC 29 ms
9,068 KB
testcase_15 AC 34 ms
9,460 KB
testcase_16 AC 55 ms
10,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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