結果

問題 No.1658 Product / Sum
ユーザー DrDrpilotDrDrpilot
提出日時 2022-01-18 18:57:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 76 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 79,616 KB
最終ジャッジ日時 2024-05-02 19:28:54
合計ジャッジ時間 2,682 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,584 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 40 ms
51,840 KB
testcase_03 AC 43 ms
51,968 KB
testcase_04 AC 39 ms
51,840 KB
testcase_05 AC 74 ms
79,488 KB
testcase_06 AC 80 ms
79,616 KB
testcase_07 AC 56 ms
62,976 KB
testcase_08 AC 71 ms
78,848 KB
testcase_09 AC 55 ms
65,280 KB
testcase_10 AC 56 ms
63,872 KB
testcase_11 AC 57 ms
63,232 KB
testcase_12 AC 54 ms
64,384 KB
testcase_13 AC 57 ms
66,560 KB
testcase_14 AC 73 ms
79,104 KB
testcase_15 AC 59 ms
67,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
a=2*k
b=2*k+n-2
ans=[a,b]+[1]*(n-2)
print(*ans)
0