結果

問題 No.1658 Product / Sum
ユーザー rlangevinrlangevin
提出日時 2022-12-31 21:58:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 188 bytes
コンパイル時間 716 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 84,480 KB
最終ジャッジ日時 2024-11-26 21:37:02
合計ジャッジ時間 3,078 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,072 KB
testcase_01 AC 36 ms
51,840 KB
testcase_02 AC 36 ms
51,584 KB
testcase_03 AC 36 ms
51,712 KB
testcase_04 AC 37 ms
51,456 KB
testcase_05 AC 71 ms
84,480 KB
testcase_06 AC 70 ms
84,096 KB
testcase_07 AC 51 ms
64,128 KB
testcase_08 AC 69 ms
82,176 KB
testcase_09 AC 52 ms
67,328 KB
testcase_10 AC 52 ms
65,536 KB
testcase_11 AC 51 ms
64,000 KB
testcase_12 AC 53 ms
66,176 KB
testcase_13 AC 55 ms
69,376 KB
testcase_14 AC 72 ms
84,096 KB
testcase_15 AC 57 ms
70,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
c = N - 2
ans = [K + 1, K * (K + c + 1)]
for i in range(c):
    ans.append(1)
    
# S, P = 0, 1
# for a in ans:
#     S += a
#     P *= a
    
print(*ans)
0