結果
問題 | No.689 E869120 and Constructing Array 3 |
ユーザー | 夜 |
提出日時 | 2020-10-27 12:10:58 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 792 bytes |
コンパイル時間 | 754 ms |
コンパイル使用メモリ | 93,220 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-21 21:53:31 |
合計ジャッジ時間 | 2,765 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | WA | - |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
ソースコード
#include <iostream> #include <string> #include <algorithm> #include <vector> #include <iomanip> #include <cmath> #include <stdio.h> #include <queue> #include <deque> #include <cstdio> #include <set> #include <map> #include <bitset> #include <stack> #include <cctype> using namespace std; int main() { long long k; cin >> k; for (long long i = 1; i <= 250; i++) { long long co = i * (i - 1) / 2; if (k >= co && (k - co) % i == 0 && (k - co) / i <= 250 - i) { long long now = i + (k - co) / i; cout << now << endl; for (int j = 0; j < (k - co) / i; j++) { cout << 2; if (j != now - 1) { cout << " "; } } for (int j = 0; j < i; j++) { cout << 1; if (j + (k - co) / i != now - 1) { cout << " "; } } cout << endl; return 0; } } }