結果

問題 No.2027 (1, 2, 3, …, N) 's Subset Sum
ユーザー titiatitia
提出日時 2022-08-05 21:23:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 164 ms / 2,000 ms
コード長 308 bytes
コンパイル時間 299 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 29,796 KB
最終ジャッジ日時 2024-09-15 17:23:43
合計ジャッジ時間 4,344 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,496 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 161 ms
29,792 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 161 ms
29,796 KB
testcase_05 AC 163 ms
29,668 KB
testcase_06 AC 164 ms
29,668 KB
testcase_07 AC 81 ms
19,052 KB
testcase_08 AC 146 ms
28,260 KB
testcase_09 AC 137 ms
27,840 KB
testcase_10 AC 106 ms
20,864 KB
testcase_11 AC 119 ms
19,972 KB
testcase_12 AC 104 ms
20,156 KB
testcase_13 AC 64 ms
15,236 KB
testcase_14 AC 42 ms
11,904 KB
testcase_15 AC 148 ms
27,780 KB
testcase_16 AC 122 ms
21,948 KB
testcase_17 AC 31 ms
10,752 KB
testcase_18 AC 30 ms
10,496 KB
testcase_19 AC 30 ms
10,496 KB
testcase_20 AC 31 ms
10,880 KB
testcase_21 AC 30 ms
10,496 KB
testcase_22 AC 105 ms
20,928 KB
testcase_23 AC 70 ms
16,132 KB
testcase_24 AC 41 ms
12,032 KB
testcase_25 AC 120 ms
22,076 KB
testcase_26 AC 52 ms
14,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

SET=set(range(1,N+1))
SUM=N*(N+1)//2
MAX=N

while SUM>S:
    if SUM-S>MAX:
        SET.remove(MAX)
        SUM-=MAX
        MAX-=1
    else:
        x=SUM-S
        SET.remove(x)
        SUM-=x
        
print(len(SET))
print(*sorted(SET))
0