結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,328 KB
testcase_01 AC 42 ms
51,840 KB
testcase_02 AC 41 ms
51,584 KB
testcase_03 AC 42 ms
51,712 KB
testcase_04 AC 42 ms
52,224 KB
testcase_05 AC 76 ms
79,104 KB
testcase_06 AC 75 ms
79,360 KB
testcase_07 AC 55 ms
62,464 KB
testcase_08 AC 72 ms
78,592 KB
testcase_09 AC 57 ms
65,664 KB
testcase_10 AC 55 ms
64,000 KB
testcase_11 AC 54 ms
63,616 KB
testcase_12 AC 56 ms
64,384 KB
testcase_13 AC 59 ms
66,304 KB
testcase_14 AC 76 ms
79,488 KB
testcase_15 AC 59 ms
67,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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