結果

問題 No.1658 Product / Sum
ユーザー 👑 NachiaNachia
提出日時 2021-08-27 21:41:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 83 bytes
コンパイル時間 1,436 ms
コンパイル使用メモリ 86,852 KB
実行使用メモリ 74,152 KB
最終ジャッジ日時 2023-08-13 08:21:43
合計ジャッジ時間 4,281 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
71,140 KB
testcase_01 AC 74 ms
71,284 KB
testcase_02 AC 74 ms
71,288 KB
testcase_03 AC 73 ms
71,268 KB
testcase_04 AC 73 ms
71,152 KB
testcase_05 AC 79 ms
74,112 KB
testcase_06 AC 78 ms
74,152 KB
testcase_07 AC 74 ms
71,104 KB
testcase_08 AC 78 ms
73,388 KB
testcase_09 AC 74 ms
71,724 KB
testcase_10 AC 71 ms
71,496 KB
testcase_11 AC 73 ms
71,376 KB
testcase_12 AC 74 ms
71,752 KB
testcase_13 AC 72 ms
71,896 KB
testcase_14 AC 75 ms
73,628 KB
testcase_15 AC 74 ms
72,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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