結果

問題 No.2027 (1, 2, 3, …, N) 's Subset Sum
ユーザー ntudantuda
提出日時 2022-10-09 02:18:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 192 ms / 2,000 ms
コード長 184 bytes
コンパイル時間 77 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 22,016 KB
最終ジャッジ日時 2024-06-23 03:19:30
合計ジャッジ時間 3,678 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,752 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 192 ms
21,888 KB
testcase_03 AC 25 ms
10,624 KB
testcase_04 AC 190 ms
21,888 KB
testcase_05 AC 192 ms
22,016 KB
testcase_06 AC 191 ms
21,760 KB
testcase_07 AC 55 ms
12,416 KB
testcase_08 AC 154 ms
18,816 KB
testcase_09 AC 64 ms
11,392 KB
testcase_10 AC 94 ms
14,720 KB
testcase_11 AC 61 ms
11,904 KB
testcase_12 AC 71 ms
13,184 KB
testcase_13 AC 53 ms
12,672 KB
testcase_14 AC 38 ms
11,776 KB
testcase_15 AC 73 ms
12,544 KB
testcase_16 AC 82 ms
13,696 KB
testcase_17 AC 25 ms
10,880 KB
testcase_18 AC 25 ms
10,752 KB
testcase_19 AC 25 ms
10,624 KB
testcase_20 AC 28 ms
10,752 KB
testcase_21 AC 26 ms
10,880 KB
testcase_22 AC 123 ms
17,280 KB
testcase_23 AC 74 ms
14,208 KB
testcase_24 AC 41 ms
11,776 KB
testcase_25 AC 133 ms
18,304 KB
testcase_26 AC 51 ms
12,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, S = map(int, input().split())
tmp = 0
ans = []
for i in reversed(range(1, N + 1)):
    if tmp + i <= S:
        tmp += i
        ans.append(i)
print(len(ans))
print(*reversed(ans))
0