結果
問題 | No.2560 A_1 < A_2 < ... < A_N |
ユーザー | Keitaro Naruse |
提出日時 | 2023-12-02 15:31:51 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 147 ms / 2,000 ms |
コード長 | 1,220 bytes |
コンパイル時間 | 645 ms |
コンパイル使用メモリ | 73,856 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-26 18:50:51 |
合計ジャッジ時間 | 2,779 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 19 ms
5,376 KB |
testcase_02 | AC | 22 ms
5,376 KB |
testcase_03 | AC | 19 ms
5,376 KB |
testcase_04 | AC | 22 ms
5,376 KB |
testcase_05 | AC | 24 ms
5,376 KB |
testcase_06 | AC | 147 ms
5,376 KB |
testcase_07 | AC | 142 ms
5,376 KB |
testcase_08 | AC | 143 ms
5,376 KB |
testcase_09 | AC | 146 ms
5,376 KB |
testcase_10 | AC | 143 ms
5,376 KB |
testcase_11 | AC | 3 ms
5,376 KB |
testcase_12 | AC | 3 ms
5,376 KB |
testcase_13 | AC | 3 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 3 ms
5,376 KB |
ソースコード
/** * @file 2560.cpp * @brief yukicoder No.2560 A_1 < A_2 < ... < A_N * @author Keitaro Naruse * @date 2023-12-02 * @copyright MIT License * @details https://yukicoder.me/problems/no/2560 * */ // # Solution #include <iostream> #include <vector> template < class T > std::ostream& operator<<( std::ostream& os, const std::vector< T >& v ) { for( auto it = v.begin( ); it != v.end( ); it++ ) { os << *it << ( it == --v.end( ) ? "" : " " ); } return os; } int main( ) { // Read T = [ 1, 10^5 ] int T; std::cin >> T; // Multiple queries for( int t = 0; t < T; t++ ) { // Read N = [ 1, 2*10^5 ], X = [ 1, 10^18 ] long long N; long long X; std::cin >> N >> X; // Main::Preprocess std::vector< long long > A( N ); for( int i = 0; i < N; i++ ) { A.at( i ) = ( long long ) ( i + 1 ); } // Main::Find a solution A.at( N - 1 ) += X - N * ( N + 1LL ) / 2LL; // Main::Output a solution if( A.at( N - 1 ) >= N ) { std::cout << A << std::endl; } else { std::cout << -1 << std::endl; } } // Finalize return 0; }