結果

問題 No.2027 (1, 2, 3, …, N) 's Subset Sum
ユーザー shirokumashirokuma
提出日時 2022-08-08 23:52:11
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 326 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 97,716 KB
最終ジャッジ日時 2024-09-19 07:45:06
合計ジャッジ時間 3,746 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,316 KB
testcase_01 AC 34 ms
53,008 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 82 ms
97,076 KB
testcase_07 AC 48 ms
71,040 KB
testcase_08 AC 73 ms
90,868 KB
testcase_09 AC 45 ms
65,460 KB
testcase_10 AC 62 ms
82,528 KB
testcase_11 AC 48 ms
68,668 KB
testcase_12 AC 52 ms
75,808 KB
testcase_13 AC 50 ms
71,904 KB
testcase_14 AC 46 ms
66,444 KB
testcase_15 AC 49 ms
70,432 KB
testcase_16 AC 53 ms
78,188 KB
testcase_17 AC 37 ms
52,468 KB
testcase_18 AC 36 ms
53,004 KB
testcase_19 AC 36 ms
52,324 KB
testcase_20 AC 37 ms
53,564 KB
testcase_21 AC 36 ms
53,576 KB
testcase_22 WA -
testcase_23 AC 60 ms
81,652 KB
testcase_24 AC 46 ms
66,660 KB
testcase_25 AC 74 ms
90,292 KB
testcase_26 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki1915
N, K = map(int, input().split())
if K <= N:
    print(K)
    exit()
if K > N*(N+1)//2:
    print(-1)
    exit()

ans = []
temp = K
for i in range(N, 0, -1):
    temp -= i
    ans.append(i)
    if temp < i -1:
        ans.append(temp)
        ans.reverse()
        print(len(ans))
        print(*ans)
        exit()

0