結果

問題 No.2027 (1, 2, 3, …, N) 's Subset Sum
ユーザー cookie63cookie63
提出日時 2023-04-15 14:07:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 221 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 85,760 KB
最終ジャッジ日時 2024-10-11 01:10:33
合計ジャッジ時間 3,913 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 35 ms
51,584 KB
testcase_02 AC 64 ms
85,376 KB
testcase_03 AC 39 ms
51,712 KB
testcase_04 AC 70 ms
84,864 KB
testcase_05 AC 69 ms
85,120 KB
testcase_06 AC 70 ms
85,760 KB
testcase_07 AC 50 ms
62,976 KB
testcase_08 AC 65 ms
78,208 KB
testcase_09 AC 51 ms
61,056 KB
testcase_10 AC 55 ms
68,608 KB
testcase_11 AC 51 ms
61,952 KB
testcase_12 AC 52 ms
65,152 KB
testcase_13 AC 51 ms
63,872 KB
testcase_14 AC 49 ms
61,824 KB
testcase_15 AC 50 ms
63,488 KB
testcase_16 AC 55 ms
66,816 KB
testcase_17 AC 43 ms
57,600 KB
testcase_18 AC 40 ms
51,840 KB
testcase_19 AC 40 ms
51,968 KB
testcase_20 AC 44 ms
57,856 KB
testcase_21 AC 40 ms
51,840 KB
testcase_22 AC 60 ms
73,472 KB
testcase_23 AC 55 ms
66,944 KB
testcase_24 AC 48 ms
61,056 KB
testcase_25 AC 63 ms
76,928 KB
testcase_26 AC 51 ms
63,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, s = map(int, input().split())
ans = []
for i in range(n, 0, -1):
    if s>=i:
        s -= i
        ans.append(i)
if s>0:
    print(-1)
else:
    ans = ans[::-1]
    print(len(ans))
    print(" ".join(map(str, ans)))
0