結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,584 KB
testcase_01 AC 37 ms
51,840 KB
testcase_02 AC 35 ms
51,712 KB
testcase_03 AC 35 ms
51,584 KB
testcase_04 AC 35 ms
51,584 KB
testcase_05 AC 76 ms
84,736 KB
testcase_06 AC 70 ms
84,480 KB
testcase_07 AC 48 ms
64,512 KB
testcase_08 AC 67 ms
82,688 KB
testcase_09 AC 53 ms
67,328 KB
testcase_10 AC 50 ms
65,664 KB
testcase_11 AC 49 ms
64,640 KB
testcase_12 AC 50 ms
66,176 KB
testcase_13 AC 53 ms
69,120 KB
testcase_14 AC 70 ms
84,608 KB
testcase_15 AC 54 ms
70,528 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