結果

問題 No.1658 Product / Sum
ユーザー 👑 NachiaNachia
提出日時 2021-08-27 21:41:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 83 bytes
コンパイル時間 338 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 55,928 KB
最終ジャッジ日時 2024-05-01 02:02:00
合計ジャッジ時間 2,446 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,820 KB
testcase_01 AC 35 ms
52,904 KB
testcase_02 AC 34 ms
53,068 KB
testcase_03 AC 35 ms
52,592 KB
testcase_04 AC 36 ms
52,624 KB
testcase_05 AC 41 ms
54,900 KB
testcase_06 AC 40 ms
55,000 KB
testcase_07 AC 36 ms
54,056 KB
testcase_08 AC 40 ms
54,916 KB
testcase_09 AC 35 ms
53,800 KB
testcase_10 AC 36 ms
53,072 KB
testcase_11 AC 36 ms
53,904 KB
testcase_12 AC 36 ms
52,508 KB
testcase_13 AC 37 ms
54,436 KB
testcase_14 AC 39 ms
55,928 KB
testcase_15 AC 37 ms
53,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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