結果

問題 No.2027 (1, 2, 3, …, N) 's Subset Sum
ユーザー tassei903tassei903
提出日時 2022-08-08 07:07:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 142 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 81,992 KB
実行使用メモリ 98,756 KB
最終ジャッジ日時 2024-09-18 18:29:24
合計ジャッジ時間 4,301 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,560 KB
testcase_01 AC 38 ms
53,248 KB
testcase_02 AC 91 ms
98,512 KB
testcase_03 AC 38 ms
51,792 KB
testcase_04 AC 91 ms
98,756 KB
testcase_05 AC 92 ms
98,464 KB
testcase_06 AC 91 ms
98,540 KB
testcase_07 AC 56 ms
70,656 KB
testcase_08 AC 82 ms
91,932 KB
testcase_09 AC 52 ms
64,988 KB
testcase_10 AC 67 ms
83,008 KB
testcase_11 AC 53 ms
68,392 KB
testcase_12 AC 59 ms
75,612 KB
testcase_13 AC 56 ms
73,560 KB
testcase_14 AC 53 ms
66,940 KB
testcase_15 AC 56 ms
72,404 KB
testcase_16 AC 61 ms
77,860 KB
testcase_17 AC 43 ms
58,380 KB
testcase_18 AC 39 ms
52,456 KB
testcase_19 AC 39 ms
52,628 KB
testcase_20 AC 43 ms
59,240 KB
testcase_21 AC 40 ms
53,360 KB
testcase_22 AC 75 ms
88,084 KB
testcase_23 AC 65 ms
81,788 KB
testcase_24 AC 51 ms
67,276 KB
testcase_25 AC 80 ms
91,164 KB
testcase_26 AC 55 ms
71,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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