結果

問題 No.2027 (1, 2, 3, …, N) 's Subset Sum
ユーザー flippergoflippergo
提出日時 2024-12-27 08:25:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 106 ms / 2,000 ms
コード長 302 bytes
コンパイル時間 390 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 86,912 KB
最終ジャッジ日時 2024-12-27 08:25:55
合計ジャッジ時間 3,960 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 83 ms
84,864 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 84 ms
85,120 KB
testcase_05 AC 82 ms
84,992 KB
testcase_06 AC 83 ms
86,912 KB
testcase_07 AC 53 ms
68,352 KB
testcase_08 AC 106 ms
83,968 KB
testcase_09 AC 49 ms
63,616 KB
testcase_10 AC 65 ms
79,744 KB
testcase_11 AC 52 ms
66,048 KB
testcase_12 AC 55 ms
71,168 KB
testcase_13 AC 56 ms
69,248 KB
testcase_14 AC 51 ms
65,280 KB
testcase_15 AC 54 ms
67,840 KB
testcase_16 AC 57 ms
73,856 KB
testcase_17 AC 42 ms
51,968 KB
testcase_18 AC 39 ms
52,096 KB
testcase_19 AC 40 ms
52,608 KB
testcase_20 AC 41 ms
52,608 KB
testcase_21 AC 41 ms
52,480 KB
testcase_22 AC 69 ms
81,152 KB
testcase_23 AC 89 ms
75,904 KB
testcase_24 AC 54 ms
65,536 KB
testcase_25 AC 76 ms
83,200 KB
testcase_26 AC 56 ms
69,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,S = map(int,input().split())
cnt = 0
for i in range(N,0,-1):
    if cnt+i<=S:
        cnt += i
        ind = i-1
    else:
        ind = i
        break

if cnt==S:
    A = list(range(ind+1,N+1))
    print(N-ind)
else:
    A = list(range(ind+1,N+1))
    A.insert(0,S-cnt)
    print(N-ind+1)
print(*A)
0