結果

問題 No.1658 Product / Sum
ユーザー roarisroaris
提出日時 2021-09-21 22:34:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 66 ms / 2,000 ms
コード長 78 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 80,040 KB
最終ジャッジ日時 2024-07-04 07:56:41
合計ジャッジ時間 3,053 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 37 ms
51,840 KB
testcase_04 AC 40 ms
52,352 KB
testcase_05 AC 66 ms
80,040 KB
testcase_06 AC 66 ms
79,616 KB
testcase_07 AC 50 ms
63,952 KB
testcase_08 AC 62 ms
78,976 KB
testcase_09 AC 52 ms
66,432 KB
testcase_10 AC 50 ms
64,768 KB
testcase_11 AC 50 ms
63,616 KB
testcase_12 AC 51 ms
64,896 KB
testcase_13 AC 54 ms
67,840 KB
testcase_14 AC 65 ms
79,620 KB
testcase_15 AC 52 ms
68,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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