結果

問題 No.2027 (1, 2, 3, …, N) 's Subset Sum
ユーザー 8nd5t8nd5t
提出日時 2022-08-05 21:22:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 225 ms / 2,000 ms
コード長 800 bytes
コンパイル時間 363 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 108,416 KB
最終ジャッジ日時 2024-09-15 17:20:01
合計ジャッジ時間 7,472 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter,defaultdict,deque
from heapq import heappop,heappush,heapify
from bisect import bisect_left,bisect_right 
import sys,math,itertools,pprint,fractions
sys.setrecursionlimit(10**8)
mod = 998244353
INF = float('inf')
def inp(): return int(sys.stdin.readline())
def inpl(): return list(map(int, sys.stdin.readline().split()))
def inpl_1(): return list(map(lambda x:int(x)-1, sys.stdin.readline().split()))
def inplm(): return map(int, sys.stdin.readline().split())
def inpl_1m(): return map(lambda x:int(x)-1, sys.stdin.readline().split())
def err(x): print(x); exit()

n,s = inpl()
if (1+n)*n//2 < s:
    print(-1)
else:
    res = []
    for i in range(1,n+1)[::-1]:
        if i <= s:
            res.append(i)
            s -= i
    print(len(res))
    print(*res[::-1])
0