結果

問題 No.2027 (1, 2, 3, …, N) 's Subset Sum
ユーザー lloyzlloyz
提出日時 2022-08-05 21:57:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 282 ms / 2,000 ms
コード長 419 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 21,760 KB
最終ジャッジ日時 2024-09-15 18:28:46
合計ジャッジ時間 5,067 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 275 ms
21,760 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 276 ms
21,760 KB
testcase_05 AC 282 ms
21,760 KB
testcase_06 AC 274 ms
21,760 KB
testcase_07 AC 103 ms
14,208 KB
testcase_08 AC 244 ms
20,096 KB
testcase_09 AC 102 ms
14,080 KB
testcase_10 AC 160 ms
16,640 KB
testcase_11 AC 120 ms
14,848 KB
testcase_12 AC 137 ms
15,616 KB
testcase_13 AC 87 ms
13,440 KB
testcase_14 AC 50 ms
11,648 KB
testcase_15 AC 152 ms
16,256 KB
testcase_16 AC 168 ms
16,768 KB
testcase_17 AC 31 ms
10,624 KB
testcase_18 AC 30 ms
10,624 KB
testcase_19 AC 30 ms
10,624 KB
testcase_20 AC 31 ms
10,880 KB
testcase_21 AC 30 ms
10,496 KB
testcase_22 AC 169 ms
16,896 KB
testcase_23 AC 102 ms
14,336 KB
testcase_24 AC 49 ms
11,648 KB
testcase_25 AC 199 ms
18,304 KB
testcase_26 AC 65 ms
12,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, s = map(int, input().split())

ANS = []
res = 0
for i in range(1, n + 1):
    res += i
    ANS.append(i)
    if i < s - res <= n:
        ANS.append(s - res)
        break
    elif 0 < s - res <= i:
        j = i - (s - res)
        ANS.pop(j)
        ANS.append(s - res + j + 1)
        break
    elif s - res == 0:
        break

#print(ANS)
if sum(ANS) != s:
    print(-1)
    exit()

print(len(ANS))
print(*ANS)
0