結果
問題 |
No.2027 (1, 2, 3, …, N) 's Subset Sum
|
ユーザー |
![]() |
提出日時 | 2023-04-27 07:35:32 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 96 ms / 2,000 ms |
コード長 | 191 bytes |
コンパイル時間 | 325 ms |
コンパイル使用メモリ | 81,920 KB |
実行使用メモリ | 98,816 KB |
最終ジャッジ日時 | 2024-11-16 13:58:42 |
合計ジャッジ時間 | 4,458 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 25 |
ソースコード
n,s=map(int,input().split()) ans = [] for i in range(n,0,-1): if s < i: continue s-=i ans.append(i) if s != 0: print(-1) exit() print(len(ans)) print(*ans[::-1])