結果

問題 No.1658 Product / Sum
ユーザー 👑 KazunKazun
提出日時 2021-08-27 21:39:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 67 bytes
コンパイル時間 574 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 80,444 KB
最終ジャッジ日時 2024-05-01 01:58:57
合計ジャッジ時間 2,454 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,860 KB
testcase_01 AC 35 ms
51,884 KB
testcase_02 AC 36 ms
51,916 KB
testcase_03 AC 34 ms
52,984 KB
testcase_04 AC 35 ms
53,508 KB
testcase_05 AC 61 ms
80,424 KB
testcase_06 AC 62 ms
80,412 KB
testcase_07 AC 47 ms
63,620 KB
testcase_08 AC 59 ms
79,708 KB
testcase_09 AC 49 ms
66,456 KB
testcase_10 AC 46 ms
64,464 KB
testcase_11 AC 45 ms
64,432 KB
testcase_12 AC 47 ms
65,704 KB
testcase_13 AC 47 ms
67,468 KB
testcase_14 AC 62 ms
80,444 KB
testcase_15 AC 48 ms
69,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())

A=[1]*(N-2)+[2*K,N+2*K-2]

print(*A)
0