結果

問題 No.2027 (1, 2, 3, …, N) 's Subset Sum
ユーザー tktk_snsntktk_snsn
提出日時 2022-08-17 19:01:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 175 ms / 2,000 ms
コード長 158 bytes
コンパイル時間 106 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,672 KB
最終ジャッジ日時 2024-10-04 22:45:32
合計ジャッジ時間 3,525 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 173 ms
21,668 KB
testcase_03 AC 26 ms
10,752 KB
testcase_04 AC 175 ms
21,672 KB
testcase_05 AC 171 ms
21,660 KB
testcase_06 AC 170 ms
21,648 KB
testcase_07 AC 51 ms
12,288 KB
testcase_08 AC 133 ms
18,816 KB
testcase_09 AC 51 ms
11,392 KB
testcase_10 AC 80 ms
14,464 KB
testcase_11 AC 51 ms
11,648 KB
testcase_12 AC 63 ms
13,184 KB
testcase_13 AC 51 ms
12,672 KB
testcase_14 AC 38 ms
11,520 KB
testcase_15 AC 64 ms
12,288 KB
testcase_16 AC 75 ms
13,440 KB
testcase_17 AC 25 ms
10,624 KB
testcase_18 AC 25 ms
10,752 KB
testcase_19 AC 26 ms
10,752 KB
testcase_20 AC 25 ms
10,624 KB
testcase_21 AC 25 ms
10,752 KB
testcase_22 AC 113 ms
17,004 KB
testcase_23 AC 77 ms
14,208 KB
testcase_24 AC 38 ms
11,648 KB
testcase_25 AC 127 ms
18,304 KB
testcase_26 AC 50 ms
12,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, s = map(int, input().split())
ans = []
for i in range(1, n+1)[::-1]:
    if i <= s:
        s -= i
        ans.append(i)

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