結果

問題 No.1658 Product / Sum
ユーザー ntudantuda
提出日時 2021-08-29 11:44:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 65 ms / 2,000 ms
コード長 84 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 79,232 KB
最終ジャッジ日時 2024-05-01 21:47:54
合計ジャッジ時間 2,311 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 33 ms
51,456 KB
testcase_02 AC 36 ms
51,712 KB
testcase_03 AC 34 ms
51,456 KB
testcase_04 AC 35 ms
51,456 KB
testcase_05 AC 58 ms
79,232 KB
testcase_06 AC 65 ms
78,848 KB
testcase_07 AC 43 ms
62,336 KB
testcase_08 AC 58 ms
78,336 KB
testcase_09 AC 47 ms
64,768 KB
testcase_10 AC 48 ms
64,256 KB
testcase_11 AC 45 ms
62,976 KB
testcase_12 AC 45 ms
64,000 KB
testcase_13 AC 48 ms
66,688 KB
testcase_14 AC 56 ms
79,104 KB
testcase_15 AC 47 ms
67,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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