結果

問題 No.1658 Product / Sum
ユーザー DrDrpilotDrDrpilot
提出日時 2022-01-18 18:57:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 76 ms / 2,000 ms
コード長 76 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 79,232 KB
最終ジャッジ日時 2024-11-23 13:27:53
合計ジャッジ時間 2,778 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 41 ms
51,712 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 41 ms
51,456 KB
testcase_04 AC 41 ms
51,712 KB
testcase_05 AC 76 ms
78,976 KB
testcase_06 AC 76 ms
79,232 KB
testcase_07 AC 55 ms
63,104 KB
testcase_08 AC 74 ms
78,720 KB
testcase_09 AC 58 ms
65,664 KB
testcase_10 AC 56 ms
64,640 KB
testcase_11 AC 56 ms
63,104 KB
testcase_12 AC 56 ms
64,256 KB
testcase_13 AC 59 ms
66,944 KB
testcase_14 AC 75 ms
79,104 KB
testcase_15 AC 61 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