結果

問題 No.2027 (1, 2, 3, …, N) 's Subset Sum
ユーザー H20H20
提出日時 2022-08-05 21:25:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 139 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 85,372 KB
最終ジャッジ日時 2024-09-15 17:27:52
合計ジャッジ時間 3,467 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,456 KB
testcase_01 AC 37 ms
51,968 KB
testcase_02 AC 81 ms
85,256 KB
testcase_03 AC 37 ms
51,840 KB
testcase_04 AC 82 ms
85,372 KB
testcase_05 AC 80 ms
85,320 KB
testcase_06 AC 81 ms
85,320 KB
testcase_07 AC 56 ms
75,392 KB
testcase_08 AC 78 ms
83,932 KB
testcase_09 AC 56 ms
75,768 KB
testcase_10 AC 69 ms
81,024 KB
testcase_11 AC 64 ms
79,080 KB
testcase_12 AC 66 ms
80,128 KB
testcase_13 AC 55 ms
72,704 KB
testcase_14 AC 50 ms
65,664 KB
testcase_15 AC 67 ms
80,636 KB
testcase_16 AC 70 ms
81,536 KB
testcase_17 AC 45 ms
60,672 KB
testcase_18 AC 40 ms
53,152 KB
testcase_19 AC 40 ms
52,080 KB
testcase_20 AC 49 ms
61,696 KB
testcase_21 AC 42 ms
57,856 KB
testcase_22 AC 69 ms
81,280 KB
testcase_23 AC 56 ms
76,032 KB
testcase_24 AC 49 ms
65,024 KB
testcase_25 AC 75 ms
82,304 KB
testcase_26 AC 53 ms
69,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,S = map(int, input().split())
v = 1
while S>=v*(v+1)//2:
    v+=1
L = list(range(1,v+1))
L.remove(v*(v+1)//2-S)
print(len(L))
print(*L)

0