結果

問題 No.1658 Product / Sum
ユーザー convexineqconvexineq
提出日時 2021-08-28 20:44:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 74 bytes
コンパイル時間 326 ms
コンパイル使用メモリ 87,224 KB
実行使用メモリ 80,848 KB
最終ジャッジ日時 2023-08-14 03:15:59
合計ジャッジ時間 3,867 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
71,460 KB
testcase_01 AC 70 ms
71,396 KB
testcase_02 AC 70 ms
71,460 KB
testcase_03 AC 69 ms
71,424 KB
testcase_04 AC 70 ms
71,460 KB
testcase_05 AC 89 ms
80,676 KB
testcase_06 AC 89 ms
80,640 KB
testcase_07 AC 77 ms
76,540 KB
testcase_08 AC 86 ms
79,948 KB
testcase_09 AC 80 ms
77,548 KB
testcase_10 AC 78 ms
77,200 KB
testcase_11 AC 77 ms
76,604 KB
testcase_12 AC 78 ms
77,404 KB
testcase_13 AC 80 ms
77,676 KB
testcase_14 AC 89 ms
80,848 KB
testcase_15 AC 80 ms
77,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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