結果

問題 No.1658 Product / Sum
ユーザー ntudantuda
提出日時 2021-08-29 11:44:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 84 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 86,628 KB
実行使用メモリ 80,356 KB
最終ジャッジ日時 2023-08-14 09:12:25
合計ジャッジ時間 4,093 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
70,800 KB
testcase_01 AC 71 ms
71,048 KB
testcase_02 AC 72 ms
70,884 KB
testcase_03 AC 71 ms
70,968 KB
testcase_04 AC 69 ms
70,772 KB
testcase_05 AC 94 ms
80,276 KB
testcase_06 AC 94 ms
80,356 KB
testcase_07 AC 79 ms
76,216 KB
testcase_08 AC 88 ms
79,684 KB
testcase_09 AC 80 ms
76,972 KB
testcase_10 AC 81 ms
76,788 KB
testcase_11 AC 78 ms
76,084 KB
testcase_12 AC 82 ms
76,696 KB
testcase_13 AC 84 ms
77,320 KB
testcase_14 AC 92 ms
80,072 KB
testcase_15 AC 86 ms
77,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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