結果

問題 No.2027 (1, 2, 3, …, N) 's Subset Sum
ユーザー lilictakalilictaka
提出日時 2022-08-10 12:45:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 204 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 97,408 KB
最終ジャッジ日時 2024-09-20 19:42:31
合計ジャッジ時間 3,456 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 AC 40 ms
52,352 KB
testcase_02 AC 90 ms
97,304 KB
testcase_03 AC 37 ms
52,224 KB
testcase_04 AC 88 ms
97,408 KB
testcase_05 AC 90 ms
97,280 KB
testcase_06 AC 90 ms
97,152 KB
testcase_07 AC 54 ms
72,756 KB
testcase_08 AC 81 ms
90,752 KB
testcase_09 AC 52 ms
67,840 KB
testcase_10 AC 68 ms
82,604 KB
testcase_11 AC 52 ms
69,760 KB
testcase_12 AC 58 ms
76,544 KB
testcase_13 AC 55 ms
73,216 KB
testcase_14 AC 51 ms
67,456 KB
testcase_15 AC 57 ms
73,728 KB
testcase_16 AC 65 ms
80,920 KB
testcase_17 AC 41 ms
58,240 KB
testcase_18 AC 38 ms
52,608 KB
testcase_19 AC 38 ms
52,224 KB
testcase_20 AC 44 ms
58,496 KB
testcase_21 AC 39 ms
52,608 KB
testcase_22 AC 73 ms
87,388 KB
testcase_23 AC 63 ms
82,020 KB
testcase_24 AC 50 ms
66,688 KB
testcase_25 AC 90 ms
90,368 KB
testcase_26 AC 63 ms
72,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def cum2(n):
    return ((1 + n) * n)//2
ans = []
N,S = map(int,input().split())
for i in reversed(range(1,N+1)):
    if S >= i:
        S -= i
        ans.append(i)
ans.sort()
print(len(ans))
print(*ans)
0