結果
問題 | No.2608 Divide into two |
ユーザー | Today03 |
提出日時 | 2024-01-19 21:37:13 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 1,000 ms |
コード長 | 722 bytes |
コンパイル時間 | 2,405 ms |
コンパイル使用メモリ | 201,448 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-28 04:07:24 |
合計ジャッジ時間 | 2,885 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
ソースコード
#include <bits/stdc++.h> #ifdef LOCAL #include "./debug.cpp" #else #define debug(...) #define print_line #endif using namespace std; using ll = long long; int main() { int T; cin >> T; while (T--) { int N; cin >> N; int M = N * (N + 1) / 2; if (M % 2 == 1) { cout << -1 << endl; } else { M /= 2; int now = 0, sum = 0; vector<char> ans(N, '0'); while (sum + now + 1 <= M) { now++; sum += now; ans[now - 1] = '1'; } if (sum < M) { int d = M - sum; if (N - d <= now) { ans[N - d - 1] = '0'; ans[N - 1] = '1'; } else { ans[now - 1] = '0'; ans[now + d - 1] = '1'; } } for (int i = 0; i < N; i++) cout << ans[i]; cout << endl; } } }