結果

問題 No.1658 Product / Sum
ユーザー H20H20
提出日時 2021-08-27 22:05:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 92 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 79,044 KB
最終ジャッジ日時 2024-11-21 02:29:53
合計ジャッジ時間 2,388 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,980 KB
testcase_01 AC 35 ms
52,056 KB
testcase_02 AC 33 ms
53,160 KB
testcase_03 AC 34 ms
52,616 KB
testcase_04 AC 34 ms
52,920 KB
testcase_05 AC 58 ms
79,044 KB
testcase_06 AC 57 ms
78,736 KB
testcase_07 AC 45 ms
63,764 KB
testcase_08 AC 55 ms
78,044 KB
testcase_09 AC 45 ms
66,724 KB
testcase_10 AC 46 ms
65,376 KB
testcase_11 AC 43 ms
63,760 KB
testcase_12 AC 45 ms
64,724 KB
testcase_13 AC 47 ms
68,320 KB
testcase_14 AC 57 ms
78,408 KB
testcase_15 AC 47 ms
68,620 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int, input().split())
L = [1]*N
L[0] = (K+1)**2-(K+1)+(N-2)*K
L[1] = K+1
print(*L)
0