結果

問題 No.2027 (1, 2, 3, …, N) 's Subset Sum
ユーザー とりゐとりゐ
提出日時 2022-07-21 22:14:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 124 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 98,944 KB
最終ジャッジ日時 2024-07-21 08:01:37
合計ジャッジ時間 3,612 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,840 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 94 ms
98,944 KB
testcase_03 AC 42 ms
51,456 KB
testcase_04 AC 94 ms
98,688 KB
testcase_05 AC 95 ms
98,688 KB
testcase_06 AC 92 ms
98,688 KB
testcase_07 AC 55 ms
70,656 KB
testcase_08 AC 83 ms
91,776 KB
testcase_09 AC 52 ms
65,024 KB
testcase_10 AC 69 ms
83,072 KB
testcase_11 AC 54 ms
67,456 KB
testcase_12 AC 58 ms
74,368 KB
testcase_13 AC 57 ms
72,192 KB
testcase_14 AC 52 ms
66,688 KB
testcase_15 AC 57 ms
70,016 KB
testcase_16 AC 61 ms
77,568 KB
testcase_17 AC 39 ms
52,352 KB
testcase_18 AC 39 ms
52,480 KB
testcase_19 AC 39 ms
52,608 KB
testcase_20 AC 43 ms
57,984 KB
testcase_21 AC 42 ms
52,096 KB
testcase_22 AC 75 ms
88,064 KB
testcase_23 AC 64 ms
82,176 KB
testcase_24 AC 51 ms
65,920 KB
testcase_25 AC 79 ms
91,264 KB
testcase_26 AC 56 ms
71,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,s=map(int,input().split())
ans=[]
while s:
  if s>=n:
    ans.append(n)
    s-=n
  n-=1

print(len(ans))
print(*ans[::-1])
0