結果
問題 | No.2027 (1, 2, 3, …, N) 's Subset Sum |
ユーザー |
![]() |
提出日時 | 2022-08-05 21:27:06 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 182 ms / 2,000 ms |
コード長 | 312 bytes |
コンパイル時間 | 148 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 23,116 KB |
最終ジャッジ日時 | 2024-09-15 23:19:41 |
合計ジャッジ時間 | 4,449 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 25 |
ソースコード
n, s = map(int, input().split())if s > (1 + n) * n // 2:print(-1)else:nouse = set()r = (1 + n) * n // 2 - sfor i in range(n, 0, -1):if i <= r:nouse.add(i)r -= ians = [i for i in range(1, n + 1) if i not in nouse]print(len(ans))print(*ans)