結果

問題 No.1658 Product / Sum
ユーザー brthyyjpbrthyyjp
提出日時 2021-08-28 19:41:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 76 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 79,616 KB
最終ジャッジ日時 2024-11-21 21:16:38
合計ジャッジ時間 2,560 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,084 KB
testcase_01 AC 39 ms
51,748 KB
testcase_02 AC 39 ms
53,588 KB
testcase_03 AC 39 ms
52,068 KB
testcase_04 AC 38 ms
52,448 KB
testcase_05 AC 60 ms
79,536 KB
testcase_06 AC 61 ms
79,232 KB
testcase_07 AC 48 ms
63,104 KB
testcase_08 AC 61 ms
78,652 KB
testcase_09 AC 49 ms
65,280 KB
testcase_10 AC 49 ms
64,128 KB
testcase_11 AC 47 ms
63,488 KB
testcase_12 AC 49 ms
64,384 KB
testcase_13 AC 49 ms
66,176 KB
testcase_14 AC 63 ms
79,616 KB
testcase_15 AC 50 ms
67,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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