結果
問題 | No.689 E869120 and Constructing Array 3 |
ユーザー | polylogK |
提出日時 | 2018-05-18 23:09:04 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 438 bytes |
コンパイル時間 | 1,506 ms |
コンパイル使用メモリ | 165,588 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-28 13:59:08 |
合計ジャッジ時間 | 4,212 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | RE | - |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | RE | - |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | AC | 2 ms
6,944 KB |
testcase_15 | AC | 2 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> using std::cout; using std::endl; using std::cin; int main(){ int n; cin >> n; for(int i = 1; i <= 250; i++){ int A = i * (i - 1) / 2; int X = n - A; if(X % i) continue; int Z = X / i; if(i + Z > 250) continue; cout << i + Z << endl; for(int j = 0; j < i; j++) cout << 1 << " "; for(int j = 0; j < Z; j++) cout << 2 << " "; cout << endl; return 0; } assert(false); return 0; }