結果

問題 No.2027 (1, 2, 3, …, N) 's Subset Sum
ユーザー 👑 KazunKazun
提出日時 2022-08-05 21:23:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 203 bytes
コンパイル時間 496 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 99,084 KB
最終ジャッジ日時 2024-09-15 17:21:58
合計ジャッジ時間 4,429 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,328 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 104 ms
98,944 KB
testcase_03 AC 40 ms
51,584 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 97 ms
98,412 KB
testcase_07 AC 58 ms
71,808 KB
testcase_08 AC 85 ms
91,576 KB
testcase_09 AC 60 ms
66,560 KB
testcase_10 AC 79 ms
82,944 KB
testcase_11 AC 60 ms
68,608 KB
testcase_12 AC 70 ms
76,032 KB
testcase_13 AC 65 ms
72,064 KB
testcase_14 AC 59 ms
67,072 KB
testcase_15 AC 66 ms
72,448 KB
testcase_16 AC 72 ms
78,208 KB
testcase_17 AC 45 ms
57,728 KB
testcase_18 AC 41 ms
51,968 KB
testcase_19 AC 41 ms
51,712 KB
testcase_20 AC 49 ms
59,008 KB
testcase_21 AC 42 ms
52,352 KB
testcase_22 WA -
testcase_23 AC 67 ms
82,008 KB
testcase_24 AC 52 ms
66,944 KB
testcase_25 AC 81 ms
91,008 KB
testcase_26 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,S=map(int,input().split())

A=[0]*(N+1)
for i in range(N,0,-1):
    if S>=i:
        A[i]=1
        S-=i
    else:
        A[S]=1
        break

print(sum(A))
print(*[i for i in range(1,N+1) if A[i]])
0