結果

問題 No.2027 (1, 2, 3, …, N) 's Subset Sum
ユーザー harurunharurun
提出日時 2022-08-06 00:30:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 211 ms / 2,000 ms
コード長 160 bytes
コンパイル時間 101 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,656 KB
最終ジャッジ日時 2024-09-15 22:25:20
合計ジャッジ時間 4,149 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,496 KB
testcase_01 AC 29 ms
10,496 KB
testcase_02 AC 209 ms
21,524 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 211 ms
21,656 KB
testcase_05 AC 206 ms
21,396 KB
testcase_06 AC 208 ms
21,632 KB
testcase_07 AC 63 ms
12,140 KB
testcase_08 AC 165 ms
18,508 KB
testcase_09 AC 63 ms
11,008 KB
testcase_10 AC 99 ms
14,476 KB
testcase_11 AC 64 ms
11,648 KB
testcase_12 AC 76 ms
12,920 KB
testcase_13 AC 60 ms
12,436 KB
testcase_14 AC 45 ms
11,392 KB
testcase_15 AC 77 ms
12,140 KB
testcase_16 AC 90 ms
13,296 KB
testcase_17 AC 30 ms
10,624 KB
testcase_18 AC 30 ms
10,624 KB
testcase_19 AC 30 ms
10,496 KB
testcase_20 AC 30 ms
10,624 KB
testcase_21 AC 31 ms
10,624 KB
testcase_22 AC 132 ms
16,888 KB
testcase_23 AC 85 ms
13,932 KB
testcase_24 AC 45 ms
11,648 KB
testcase_25 AC 150 ms
17,996 KB
testcase_26 AC 58 ms
12,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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