結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 266 ms
21,760 KB
testcase_03 RE -
testcase_04 AC 266 ms
21,760 KB
testcase_05 AC 266 ms
21,632 KB
testcase_06 AC 264 ms
21,888 KB
testcase_07 AC 104 ms
14,208 KB
testcase_08 AC 235 ms
20,224 KB
testcase_09 AC 100 ms
13,952 KB
testcase_10 AC 157 ms
16,768 KB
testcase_11 AC 116 ms
14,848 KB
testcase_12 AC 136 ms
15,488 KB
testcase_13 AC 86 ms
13,440 KB
testcase_14 AC 51 ms
11,520 KB
testcase_15 AC 149 ms
16,256 KB
testcase_16 AC 163 ms
16,768 KB
testcase_17 AC 32 ms
10,624 KB
testcase_18 AC 31 ms
10,752 KB
testcase_19 AC 30 ms
10,496 KB
testcase_20 AC 31 ms
10,880 KB
testcase_21 AC 30 ms
10,752 KB
testcase_22 AC 163 ms
17,024 KB
testcase_23 AC 103 ms
14,080 KB
testcase_24 AC 49 ms
11,648 KB
testcase_25 AC 192 ms
18,304 KB
testcase_26 AC 66 ms
12,544 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 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