結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,584 KB
testcase_01 AC 35 ms
51,840 KB
testcase_02 AC 87 ms
97,280 KB
testcase_03 AC 37 ms
51,328 KB
testcase_04 AC 84 ms
97,152 KB
testcase_05 AC 90 ms
97,228 KB
testcase_06 AC 86 ms
96,640 KB
testcase_07 AC 61 ms
81,152 KB
testcase_08 AC 80 ms
94,400 KB
testcase_09 AC 59 ms
81,408 KB
testcase_10 AC 68 ms
86,912 KB
testcase_11 AC 61 ms
83,456 KB
testcase_12 AC 66 ms
84,836 KB
testcase_13 AC 54 ms
75,648 KB
testcase_14 AC 47 ms
67,072 KB
testcase_15 AC 65 ms
85,632 KB
testcase_16 AC 67 ms
86,784 KB
testcase_17 AC 44 ms
60,928 KB
testcase_18 AC 36 ms
52,864 KB
testcase_19 AC 37 ms
52,608 KB
testcase_20 AC 45 ms
61,568 KB
testcase_21 AC 40 ms
57,600 KB
testcase_22 AC 69 ms
87,040 KB
testcase_23 AC 60 ms
81,280 KB
testcase_24 AC 47 ms
66,048 KB
testcase_25 AC 74 ms
89,728 KB
testcase_26 AC 50 ms
71,424 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