結果

問題 No.2027 (1, 2, 3, …, N) 's Subset Sum
ユーザー MasKoaTSMasKoaTS
提出日時 2022-08-05 22:28:07
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,178 bytes
コンパイル時間 294 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 110,336 KB
最終ジャッジ日時 2024-09-15 19:38:16
合計ジャッジ時間 7,014 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
86,400 KB
testcase_01 AC 145 ms
86,400 KB
testcase_02 WA -
testcase_03 AC 141 ms
86,400 KB
testcase_04 AC 200 ms
110,080 KB
testcase_05 AC 197 ms
110,336 KB
testcase_06 AC 202 ms
109,952 KB
testcase_07 AC 162 ms
91,520 KB
testcase_08 AC 192 ms
107,264 KB
testcase_09 AC 159 ms
89,600 KB
testcase_10 AC 175 ms
98,304 KB
testcase_11 AC 159 ms
91,136 KB
testcase_12 AC 165 ms
93,696 KB
testcase_13 AC 160 ms
91,904 KB
testcase_14 AC 157 ms
89,472 KB
testcase_15 AC 166 ms
92,544 KB
testcase_16 AC 171 ms
97,024 KB
testcase_17 AC 148 ms
85,760 KB
testcase_18 AC 139 ms
85,888 KB
testcase_19 AC 137 ms
86,272 KB
testcase_20 AC 153 ms
88,832 KB
testcase_21 AC 145 ms
85,888 KB
testcase_22 AC 183 ms
100,096 KB
testcase_23 AC 168 ms
92,928 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 164 ms
90,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools as iter
import collections as coll
import heapq as hq
import bisect as bis
from decimal import Decimal as dec
from functools import cmp_to_key
import math
import sys
#import pypyjit
#pypyjit.set_param('max_unroll_recursion=-1')
sys.setrecursionlimit(10 ** 6)
inp = sys.stdin.readline
input = lambda : inp().rstrip()
getN = lambda : int(inp())
getNs = lambda : map(int, inp().split())
getList = lambda :list(map(int, inp().split()))
getStrs = lambda n : [input() for _ in [0] * n]
def yexit(): print("Yes"); exit(0)
def nexit(): print("No"); exit(0)
pi = 3.141592653589793
mod = 1000000007
MOD = 998244353
INF = 4611686018427387903
dx = [1, 0, -1, 0];	dy = [0, 1, 0, -1]


"""
Main Code
"""

n, s = getNs()
d = s // (n + 1)
r = s % (n + 1)

if(n == s and s == 1):
	print(1)
	print(1)
	exit(0)

ans = []
if(d == n // 2):
	for i in range(1, n + 1):
		if(i == n * (n + 1) // 2 - s):
			continue
		ans.append(i)
	print(*ans)
	exit(0)

t = r
i = 0
if(r > 0):
	ans.append(r)
while(t < s):
	#print(t)
	i += 1
	if(r in [i, n + 1 - i]):
		continue
	ans.append(i)
	ans.append(n + 1 - i)
	t += n + 1
ans.sort()

if(t != s):
	print(-1)
	exit(0)

print(len(ans))
print(*ans)
0