結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,584 KB
testcase_01 AC 36 ms
51,968 KB
testcase_02 AC 85 ms
97,152 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 85 ms
97,280 KB
testcase_07 AC 56 ms
69,888 KB
testcase_08 AC 79 ms
90,624 KB
testcase_09 AC 47 ms
64,256 KB
testcase_10 AC 62 ms
82,304 KB
testcase_11 AC 47 ms
67,072 KB
testcase_12 AC 53 ms
74,112 KB
testcase_13 AC 50 ms
71,424 KB
testcase_14 AC 47 ms
65,792 KB
testcase_15 AC 49 ms
69,888 KB
testcase_16 AC 54 ms
76,288 KB
testcase_17 AC 36 ms
52,680 KB
testcase_18 AC 35 ms
52,608 KB
testcase_19 AC 36 ms
52,352 KB
testcase_20 AC 37 ms
52,864 KB
testcase_21 AC 36 ms
52,864 KB
testcase_22 WA -
testcase_23 AC 59 ms
81,744 KB
testcase_24 AC 47 ms
66,304 KB
testcase_25 AC 73 ms
90,112 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()

ans.reverse()
print(len(ans))
print(*ans)
exit()
0