結果

問題 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 176 ms
84,224 KB
testcase_01 AC 173 ms
84,608 KB
testcase_02 AC 224 ms
108,160 KB
testcase_03 AC 175 ms
84,224 KB
testcase_04 AC 223 ms
108,032 KB
testcase_05 AC 220 ms
108,416 KB
testcase_06 AC 225 ms
107,904 KB
testcase_07 AC 187 ms
86,656 KB
testcase_08 AC 211 ms
101,248 KB
testcase_09 AC 181 ms
85,376 KB
testcase_10 AC 196 ms
92,800 KB
testcase_11 AC 185 ms
85,504 KB
testcase_12 AC 191 ms
89,344 KB
testcase_13 AC 189 ms
88,064 KB
testcase_14 AC 183 ms
85,120 KB
testcase_15 AC 189 ms
86,784 KB
testcase_16 AC 196 ms
90,496 KB
testcase_17 AC 175 ms
84,736 KB
testcase_18 AC 175 ms
84,608 KB
testcase_19 AC 175 ms
84,480 KB
testcase_20 AC 178 ms
84,864 KB
testcase_21 AC 176 ms
84,608 KB
testcase_22 AC 210 ms
97,664 KB
testcase_23 AC 193 ms
91,392 KB
testcase_24 AC 181 ms
85,376 KB
testcase_25 AC 207 ms
100,864 KB
testcase_26 AC 190 ms
87,168 KB
権限があれば一括ダウンロードができます

ソースコード

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