結果

問題 No.2027 (1, 2, 3, …, N) 's Subset Sum
ユーザー ニックネームニックネーム
提出日時 2022-08-05 21:24:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 276 ms / 2,000 ms
コード長 142 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,668 KB
最終ジャッジ日時 2024-09-15 17:26:18
合計ジャッジ時間 4,531 ms
ジャッジサーバーID
(参考情報)
judge6 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,496 KB
testcase_01 AC 31 ms
10,496 KB
testcase_02 AC 276 ms
21,544 KB
testcase_03 AC 30 ms
10,496 KB
testcase_04 AC 271 ms
21,544 KB
testcase_05 AC 271 ms
21,668 KB
testcase_06 AC 273 ms
21,648 KB
testcase_07 AC 65 ms
12,160 KB
testcase_08 AC 207 ms
18,688 KB
testcase_09 AC 42 ms
11,264 KB
testcase_10 AC 113 ms
14,464 KB
testcase_11 AC 54 ms
11,520 KB
testcase_12 AC 81 ms
13,056 KB
testcase_13 AC 71 ms
12,544 KB
testcase_14 AC 49 ms
11,648 KB
testcase_15 AC 65 ms
12,288 KB
testcase_16 AC 93 ms
13,568 KB
testcase_17 AC 29 ms
10,496 KB
testcase_18 AC 30 ms
10,624 KB
testcase_19 AC 30 ms
10,624 KB
testcase_20 AC 31 ms
10,624 KB
testcase_21 AC 30 ms
10,624 KB
testcase_22 AC 166 ms
17,004 KB
testcase_23 AC 104 ms
14,080 KB
testcase_24 AC 51 ms
11,648 KB
testcase_25 AC 193 ms
18,048 KB
testcase_26 AC 68 ms
12,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, s = map(int, input().split())
ans = []
while s:
    m = min(n, s)
    n -= 1
    s -= m
    ans.append(m)
print(len(ans))
print(*ans[::-1])
0