結果

問題 No.2027 (1, 2, 3, …, N) 's Subset Sum
ユーザー ああいいああいい
提出日時 2022-08-07 16:13:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 276 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 99,096 KB
最終ジャッジ日時 2024-09-17 09:29:46
合計ジャッジ時間 3,439 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,416 KB
testcase_01 AC 37 ms
52,888 KB
testcase_02 AC 89 ms
98,532 KB
testcase_03 WA -
testcase_04 AC 89 ms
98,716 KB
testcase_05 AC 91 ms
99,096 KB
testcase_06 AC 89 ms
98,944 KB
testcase_07 AC 53 ms
71,700 KB
testcase_08 AC 78 ms
92,080 KB
testcase_09 AC 48 ms
65,036 KB
testcase_10 AC 64 ms
83,232 KB
testcase_11 AC 50 ms
68,808 KB
testcase_12 AC 54 ms
74,316 KB
testcase_13 AC 53 ms
72,376 KB
testcase_14 AC 48 ms
66,768 KB
testcase_15 AC 52 ms
70,380 KB
testcase_16 AC 56 ms
78,828 KB
testcase_17 AC 39 ms
53,940 KB
testcase_18 AC 38 ms
53,040 KB
testcase_19 AC 38 ms
53,628 KB
testcase_20 AC 39 ms
52,764 KB
testcase_21 AC 40 ms
52,832 KB
testcase_22 AC 74 ms
88,220 KB
testcase_23 AC 64 ms
82,232 KB
testcase_24 AC 50 ms
67,048 KB
testcase_25 AC 79 ms
91,436 KB
testcase_26 AC 53 ms
72,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,S = map(int,input().split())

import sys
if S <= N:
    print(S)
    exit()
tmp = 0
ans = []
for i in range(N,0,-1):
    if tmp + i <= S:
        ans.append(i)
        tmp += i
    else:
        break
if S - tmp > 0:
    ans.append(S - tmp)
print(len(ans))
print(*ans[::-1])
0