結果
問題 | No.2560 A_1 < A_2 < ... < A_N |
ユーザー | Tatsuo Matsuura |
提出日時 | 2023-12-02 16:39:25 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,026 bytes |
コンパイル時間 | 298 ms |
コンパイル使用メモリ | 82,588 KB |
実行使用メモリ | 93,712 KB |
最終ジャッジ日時 | 2024-09-26 20:33:44 |
合計ジャッジ時間 | 4,474 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
64,896 KB |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | TLE | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
ソースコード
inputs = input() inputs_arr = inputs.split(" ") T = int(inputs_arr[0]) datas = [] for i in range(T): inputs = input() inputs_arr = inputs.split(" ") datas.append([int(inputs_arr[0]), int(inputs_arr[1])]) answer = [] def generate_combinations(numbers, current_combination, remaining_elements, target_sum): if remaining_elements == 0: if sum(current_combination) == target_sum: answer.append(current_combination) return for i in range(len(numbers)): if not current_combination or numbers[i] > current_combination[-1]: generate_combinations(numbers, current_combination + [numbers[i]], remaining_elements - 1, target_sum) for d in datas: N = d[0] X = d[1] display_num = "" numbers = list(range(1, X)) combination_size = N target_sum = X answer = [] generate_combinations(numbers, [], combination_size, target_sum) if len(answer) == 0: print("-1") else: for num in answer[0]: display_num = display_num + str(num) + " " print(display_num[:-1])