結果

問題 No.2027 (1, 2, 3, …, N) 's Subset Sum
ユーザー pluto77pluto77
提出日時 2023-01-21 15:48:21
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 210 ms / 2,000 ms
コード長 119 bytes
コンパイル時間 105 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 21,800 KB
最終ジャッジ日時 2024-06-23 23:32:53
合計ジャッジ時間 4,656 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 203 ms
21,800 KB
testcase_03 AC 32 ms
10,624 KB
testcase_04 AC 210 ms
21,800 KB
testcase_05 AC 202 ms
21,800 KB
testcase_06 AC 203 ms
21,772 KB
testcase_07 AC 62 ms
12,544 KB
testcase_08 AC 160 ms
18,816 KB
testcase_09 AC 60 ms
11,392 KB
testcase_10 AC 96 ms
14,592 KB
testcase_11 AC 65 ms
11,776 KB
testcase_12 AC 76 ms
13,184 KB
testcase_13 AC 62 ms
12,672 KB
testcase_14 AC 45 ms
11,904 KB
testcase_15 AC 75 ms
12,416 KB
testcase_16 AC 88 ms
13,696 KB
testcase_17 AC 32 ms
10,880 KB
testcase_18 AC 31 ms
10,880 KB
testcase_19 AC 32 ms
10,752 KB
testcase_20 AC 32 ms
10,752 KB
testcase_21 AC 32 ms
10,752 KB
testcase_22 AC 130 ms
17,180 KB
testcase_23 AC 83 ms
14,208 KB
testcase_24 AC 46 ms
11,904 KB
testcase_25 AC 146 ms
18,432 KB
testcase_26 AC 60 ms
12,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,S=map(int,input().split())
A=[]
for i in range(N,0,-1):
 if i<=S:
  A.append(i)
  S-=i
print(len(A))
print(*A[::-1])
0