結果

問題 No.2027 (1, 2, 3, …, N) 's Subset Sum
ユーザー ああいいああいい
提出日時 2022-08-07 16:19:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 435 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 81,900 KB
実行使用メモリ 98,680 KB
最終ジャッジ日時 2024-09-17 09:34:16
合計ジャッジ時間 4,236 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 37 ms
52,688 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 90 ms
98,680 KB
testcase_07 AC 52 ms
71,136 KB
testcase_08 AC 82 ms
91,484 KB
testcase_09 AC 49 ms
65,584 KB
testcase_10 AC 65 ms
82,952 KB
testcase_11 AC 50 ms
68,792 KB
testcase_12 AC 54 ms
74,532 KB
testcase_13 AC 53 ms
71,736 KB
testcase_14 AC 49 ms
66,148 KB
testcase_15 AC 53 ms
70,912 KB
testcase_16 AC 57 ms
77,844 KB
testcase_17 AC 40 ms
53,688 KB
testcase_18 AC 39 ms
53,292 KB
testcase_19 AC 38 ms
52,612 KB
testcase_20 AC 39 ms
52,824 KB
testcase_21 AC 39 ms
53,892 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

import sys
if S <= N:
    print(S)
    exit()
M = N * (N + 1) // 2
if M - S <= N:
    ans = []
    for i in range(1,N + 1):
        if i != M - S:
            ans.append(i)
    print(*ans)
    exit()
    
tmp = 0
ans = []
for i in range(N,0,-1):
    if tmp + i <= S:
        ans.append(i)
        tmp += i
    else:
        break
if S - tmp > 0:
    ans.append(S - tmp)
print(len(ans))
print(*ans[::-1])
0