結果

問題 No.796 well known
ユーザー s_shoheis_shohei
提出日時 2020-05-04 19:24:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 67 ms / 2,000 ms
コード長 74 bytes
コンパイル時間 828 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 84,480 KB
最終ジャッジ日時 2024-06-24 21:11:02
合計ジャッジ時間 2,415 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,140 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 37 ms
51,456 KB
testcase_03 AC 37 ms
51,584 KB
testcase_04 AC 65 ms
82,128 KB
testcase_05 AC 66 ms
83,072 KB
testcase_06 AC 66 ms
84,472 KB
testcase_07 AC 49 ms
66,816 KB
testcase_08 AC 62 ms
83,328 KB
testcase_09 AC 53 ms
76,032 KB
testcase_10 AC 64 ms
84,352 KB
testcase_11 AC 46 ms
63,920 KB
testcase_12 AC 52 ms
72,832 KB
testcase_13 AC 63 ms
81,448 KB
testcase_14 AC 52 ms
69,888 KB
testcase_15 AC 54 ms
73,984 KB
testcase_16 AC 67 ms
84,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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