結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,068 KB
testcase_01 AC 34 ms
52,400 KB
testcase_02 AC 35 ms
51,888 KB
testcase_03 AC 33 ms
52,060 KB
testcase_04 AC 34 ms
53,300 KB
testcase_05 AC 58 ms
79,540 KB
testcase_06 AC 57 ms
79,652 KB
testcase_07 AC 45 ms
64,404 KB
testcase_08 AC 57 ms
78,840 KB
testcase_09 AC 45 ms
66,364 KB
testcase_10 AC 44 ms
65,040 KB
testcase_11 AC 47 ms
64,080 KB
testcase_12 AC 43 ms
63,980 KB
testcase_13 AC 49 ms
67,896 KB
testcase_14 AC 60 ms
79,012 KB
testcase_15 AC 47 ms
67,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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