結果

問題 No.2027 (1, 2, 3, …, N) 's Subset Sum
ユーザー AkariAkari
提出日時 2022-08-05 21:45:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 167 ms / 2,000 ms
コード長 256 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 21,692 KB
最終ジャッジ日時 2024-09-15 18:07:49
合計ジャッジ時間 3,857 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 29 ms
10,496 KB
testcase_02 AC 167 ms
21,692 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 166 ms
21,692 KB
testcase_05 AC 167 ms
21,564 KB
testcase_06 AC 165 ms
21,632 KB
testcase_07 AC 52 ms
12,160 KB
testcase_08 AC 130 ms
18,560 KB
testcase_09 AC 44 ms
11,264 KB
testcase_10 AC 78 ms
14,336 KB
testcase_11 AC 48 ms
11,776 KB
testcase_12 AC 61 ms
12,928 KB
testcase_13 AC 54 ms
12,416 KB
testcase_14 AC 41 ms
11,392 KB
testcase_15 AC 58 ms
12,160 KB
testcase_16 AC 70 ms
13,568 KB
testcase_17 AC 30 ms
10,368 KB
testcase_18 AC 30 ms
10,496 KB
testcase_19 AC 29 ms
10,624 KB
testcase_20 AC 31 ms
10,496 KB
testcase_21 AC 31 ms
10,496 KB
testcase_22 AC 108 ms
16,900 KB
testcase_23 AC 71 ms
14,080 KB
testcase_24 AC 41 ms
11,520 KB
testcase_25 AC 123 ms
17,952 KB
testcase_26 AC 53 ms
12,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys






def main():
    n, s = map(int, input().split())
    ans = []
    for i in range(n, 0, -1):
        if i <= s:
            ans.append(i)
            s -= i
    print(len(ans))
    print(*ans[::-1])




if __name__ == '__main__':
    main()
0