結果

問題 No.2027 (1, 2, 3, …, N) 's Subset Sum
ユーザー TomoyarnTomoyarn
提出日時 2022-11-04 20:44:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 278 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 98,816 KB
最終ジャッジ日時 2024-07-18 18:32:28
合計ジャッジ時間 4,367 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,456 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 103 ms
98,432 KB
testcase_03 AC 41 ms
51,712 KB
testcase_04 AC 103 ms
98,560 KB
testcase_05 AC 107 ms
98,560 KB
testcase_06 AC 105 ms
98,816 KB
testcase_07 AC 63 ms
70,144 KB
testcase_08 AC 94 ms
91,904 KB
testcase_09 AC 57 ms
64,256 KB
testcase_10 AC 79 ms
82,688 KB
testcase_11 AC 61 ms
67,072 KB
testcase_12 AC 68 ms
73,856 KB
testcase_13 AC 65 ms
71,168 KB
testcase_14 AC 60 ms
66,048 KB
testcase_15 AC 64 ms
69,888 KB
testcase_16 AC 70 ms
76,672 KB
testcase_17 AC 44 ms
52,608 KB
testcase_18 AC 43 ms
52,096 KB
testcase_19 AC 43 ms
51,840 KB
testcase_20 AC 45 ms
52,480 KB
testcase_21 AC 44 ms
52,224 KB
testcase_22 AC 88 ms
88,064 KB
testcase_23 AC 78 ms
81,792 KB
testcase_24 AC 59 ms
66,304 KB
testcase_25 AC 94 ms
91,520 KB
testcase_26 AC 64 ms
71,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans = []

while True:
    if N < S:
        if N == 0:
            break
        else:
            ans.append(N)
            S -= N
            N -= 1
            
    else:
        ans.append(S)
        break

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