結果
問題 | No.2560 A_1 < A_2 < ... < A_N |
ユーザー | かもめのうで |
提出日時 | 2023-12-02 15:01:48 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 335 bytes |
コンパイル時間 | 242 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 90,496 KB |
最終ジャッジ日時 | 2024-09-26 17:55:37 |
合計ジャッジ時間 | 2,654 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
52,224 KB |
testcase_01 | AC | 95 ms
84,352 KB |
testcase_02 | AC | 95 ms
87,492 KB |
testcase_03 | AC | 91 ms
90,496 KB |
testcase_04 | AC | 90 ms
90,368 KB |
testcase_05 | AC | 93 ms
89,868 KB |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | AC | 56 ms
73,472 KB |
testcase_12 | AC | 64 ms
76,032 KB |
testcase_13 | AC | 60 ms
74,496 KB |
testcase_14 | AC | 57 ms
73,600 KB |
testcase_15 | AC | 66 ms
76,416 KB |
ソースコード
t = int(input()) N = [] X = [] for _ in range(t): n, x = map(int, input().split()) N.append(n) X.append(x) for j in range(t): n = N[j] x = X[j] ans = [] for i in range(1, n): ans.append(i) sum_ans = sum(ans) if x-sum_ans <= ans[-1]: print(-1) else: print(*ans, x-sum_ans)