結果

問題 No.2027 (1, 2, 3, …, N) 's Subset Sum
ユーザー rlangevinrlangevin
提出日時 2022-12-30 03:54:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 280 bytes
コンパイル時間 143 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 97,516 KB
最終ジャッジ日時 2024-11-25 01:59:36
合計ジャッジ時間 3,871 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,280 KB
testcase_01 AC 31 ms
52,504 KB
testcase_02 AC 80 ms
97,432 KB
testcase_03 AC 36 ms
52,016 KB
testcase_04 AC 81 ms
97,216 KB
testcase_05 AC 82 ms
96,952 KB
testcase_06 AC 87 ms
97,516 KB
testcase_07 AC 59 ms
81,480 KB
testcase_08 AC 79 ms
94,276 KB
testcase_09 AC 60 ms
81,324 KB
testcase_10 AC 67 ms
87,140 KB
testcase_11 AC 61 ms
83,152 KB
testcase_12 AC 63 ms
84,564 KB
testcase_13 AC 52 ms
76,440 KB
testcase_14 AC 47 ms
67,456 KB
testcase_15 AC 67 ms
85,988 KB
testcase_16 AC 68 ms
87,032 KB
testcase_17 AC 44 ms
61,796 KB
testcase_18 AC 37 ms
55,000 KB
testcase_19 AC 35 ms
52,956 KB
testcase_20 AC 45 ms
62,844 KB
testcase_21 AC 40 ms
58,944 KB
testcase_22 AC 68 ms
87,176 KB
testcase_23 AC 59 ms
81,504 KB
testcase_24 AC 46 ms
68,408 KB
testcase_25 AC 71 ms
90,248 KB
testcase_26 AC 50 ms
71,408 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, S = map(int, input().split())
for i in range(1, N + 1):
    if S <= i * (i + 1)//2:
        v = i * (i + 1)//2 - S
        ans = []
        for j in range(1, i + 1):
            if j != v:
                ans.append(j)
        print(len(ans))
        print(*ans)
        exit()
0