結果

問題 No.2027 (1, 2, 3, …, N) 's Subset Sum
ユーザー aoymats1aoymats1
提出日時 2022-08-05 21:42:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 165 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 98,816 KB
最終ジャッジ日時 2024-09-15 18:02:21
合計ジャッジ時間 3,437 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,584 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 90 ms
98,816 KB
testcase_03 AC 37 ms
51,840 KB
testcase_04 AC 91 ms
98,536 KB
testcase_05 AC 90 ms
98,544 KB
testcase_06 AC 92 ms
98,688 KB
testcase_07 AC 56 ms
72,576 KB
testcase_08 AC 81 ms
91,984 KB
testcase_09 AC 54 ms
68,096 KB
testcase_10 AC 67 ms
83,040 KB
testcase_11 AC 55 ms
70,400 KB
testcase_12 AC 60 ms
76,772 KB
testcase_13 AC 58 ms
73,728 KB
testcase_14 AC 53 ms
67,584 KB
testcase_15 AC 58 ms
73,344 KB
testcase_16 AC 65 ms
80,832 KB
testcase_17 AC 42 ms
57,984 KB
testcase_18 AC 39 ms
52,480 KB
testcase_19 AC 39 ms
52,352 KB
testcase_20 AC 42 ms
58,496 KB
testcase_21 AC 39 ms
52,224 KB
testcase_22 AC 75 ms
88,448 KB
testcase_23 AC 65 ms
81,844 KB
testcase_24 AC 53 ms
66,560 KB
testcase_25 AC 79 ms
91,392 KB
testcase_26 AC 55 ms
71,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans = []
for n in reversed(range(1, N + 1)):
    if S >= n:
        ans.append(n)
        S -= n

print(len(ans))
print(*ans[::-1])
0