結果

問題 No.2027 (1, 2, 3, …, N) 's Subset Sum
ユーザー stngstng
提出日時 2022-08-07 09:18:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 241 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 97,400 KB
最終ジャッジ日時 2024-09-17 03:56:50
合計ジャッジ時間 3,351 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,412 KB
testcase_01 AC 32 ms
52,444 KB
testcase_02 AC 81 ms
97,296 KB
testcase_03 AC 32 ms
52,912 KB
testcase_04 AC 79 ms
97,204 KB
testcase_05 AC 79 ms
97,400 KB
testcase_06 AC 81 ms
97,040 KB
testcase_07 AC 62 ms
81,332 KB
testcase_08 AC 78 ms
94,560 KB
testcase_09 AC 58 ms
81,248 KB
testcase_10 AC 64 ms
87,168 KB
testcase_11 AC 60 ms
83,160 KB
testcase_12 AC 68 ms
84,796 KB
testcase_13 AC 55 ms
77,280 KB
testcase_14 AC 49 ms
69,104 KB
testcase_15 AC 69 ms
85,516 KB
testcase_16 AC 70 ms
87,456 KB
testcase_17 AC 43 ms
62,460 KB
testcase_18 AC 36 ms
53,752 KB
testcase_19 AC 39 ms
53,096 KB
testcase_20 AC 43 ms
62,212 KB
testcase_21 AC 39 ms
59,252 KB
testcase_22 AC 68 ms
87,700 KB
testcase_23 AC 59 ms
81,740 KB
testcase_24 AC 47 ms
67,076 KB
testcase_25 AC 73 ms
90,236 KB
testcase_26 AC 50 ms
72,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,s = map(int,input().split())

for i in range(1,n+1):
    tmp = i*(i+1)//2
    if tmp >= s:
        idx = i
        sa = tmp-s
        break
ans = []
for i in range(1,idx+1):
    if i != sa:
        ans.append(i)
print(len(ans))
print(*ans)
0