結果

問題 No.2027 (1, 2, 3, …, N) 's Subset Sum
ユーザー wattaiheiwattaihei
提出日時 2022-08-05 22:10:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 274 bytes
コンパイル時間 345 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 98,744 KB
最終ジャッジ日時 2024-09-15 19:06:59
合計ジャッジ時間 3,543 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 39 ms
51,840 KB
testcase_02 AC 94 ms
98,652 KB
testcase_03 AC 38 ms
51,584 KB
testcase_04 AC 94 ms
98,540 KB
testcase_05 AC 92 ms
98,744 KB
testcase_06 AC 93 ms
98,336 KB
testcase_07 AC 54 ms
70,656 KB
testcase_08 AC 81 ms
91,572 KB
testcase_09 AC 52 ms
65,664 KB
testcase_10 AC 68 ms
82,688 KB
testcase_11 AC 53 ms
67,436 KB
testcase_12 AC 57 ms
75,392 KB
testcase_13 AC 55 ms
71,808 KB
testcase_14 AC 52 ms
66,304 KB
testcase_15 AC 56 ms
70,656 KB
testcase_16 AC 60 ms
77,568 KB
testcase_17 AC 42 ms
57,856 KB
testcase_18 AC 40 ms
51,968 KB
testcase_19 AC 39 ms
52,224 KB
testcase_20 AC 43 ms
57,984 KB
testcase_21 AC 40 ms
52,480 KB
testcase_22 AC 75 ms
87,896 KB
testcase_23 AC 66 ms
81,792 KB
testcase_24 AC 52 ms
66,048 KB
testcase_25 AC 80 ms
91,052 KB
testcase_26 AC 55 ms
70,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, S = map(int, input().rstrip().split())

if not 1 <= S <= N*(N+1)//2:
    print(-1)
else:
    remain = S
    ans = []
    for i in range(N, 0, -1):
        if i <= remain:
            remain -= i
            ans.append(i)
        
    print(len(ans))
    print(*ans[::-1])
0