結果
問題 | No.689 E869120 and Constructing Array 3 |
ユーザー | e869120 |
提出日時 | 2018-05-04 22:01:46 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 5 ms / 1,000 ms |
コード長 | 602 bytes |
コンパイル時間 | 545 ms |
コンパイル使用メモリ | 66,304 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-28 13:34:29 |
合計ジャッジ時間 | 1,935 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
5,248 KB |
testcase_01 | AC | 4 ms
5,376 KB |
testcase_02 | AC | 4 ms
5,376 KB |
testcase_03 | AC | 4 ms
5,376 KB |
testcase_04 | AC | 5 ms
5,376 KB |
testcase_05 | AC | 4 ms
5,376 KB |
testcase_06 | AC | 5 ms
5,376 KB |
testcase_07 | AC | 4 ms
5,376 KB |
testcase_08 | AC | 4 ms
5,376 KB |
testcase_09 | AC | 4 ms
5,376 KB |
testcase_10 | AC | 4 ms
5,376 KB |
testcase_11 | AC | 4 ms
5,376 KB |
testcase_12 | AC | 5 ms
5,376 KB |
testcase_13 | AC | 4 ms
5,376 KB |
testcase_14 | AC | 4 ms
5,376 KB |
testcase_15 | AC | 4 ms
5,376 KB |
ソースコード
#include <iostream> #include <tuple> using namespace std; int N, A[1009], K; int main() { cin >> K; int minx = 10000; for (int i = 0; i <= 140; i++) { for (int j = 0; j <= 140; j++) { for (int k = 0; k <= 140; k++) { if (j*k + i*(i - 1) / 2 != K) continue; if (minx > i + j + k) { minx = i + j + k; for (int l = 0; l < i; l++) A[l] = 1; for (int l = i; l < i + j; l++) A[l] = 3; for (int l = i + j; l < i + j + k; l++) A[l] = 8; } } } } cout << minx << endl; for (int i = 0; i < minx; i++) { if (i)cout << " "; cout << A[i]; }cout << endl; return 0; }