結果

問題 No.2608 Divide into two
ユーザー soldraysoldray
提出日時 2024-01-22 18:53:58
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 709 bytes
コンパイル時間 899 ms
コンパイル使用メモリ 128,856 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-09-28 06:28:06
合計ジャッジ時間 1,103 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <stdio.h>
#include <vector>
#include <algorithm>

using namespace std;

using i64 = long long;

#define yn(pope) (pope ? "Yes" : "No")

#define rep(i, n, m) for (int i = (n); i < (m); i++)
#define rrep(i, n, m) for (int i = (n); i > m; i--)

#define IINF (1 << 30)
#define INF (1ll << 60)

#define all(v) v.begin(), v.end()

int main() {
  int T; cin >> T;

  while (T--) {
    int N; cin >> N;

    string ans = "";

    rep(i, 0, N >> 2) {
      ans += "0110";
    }

    N %= (1 << 2);

    if (1 <= N && N <= 2) {
      ans = "-1";
    }

    reverse(all(ans));

    if (N == 3) {
      ans += "011";
    }

    reverse(all(ans));

    cout << ans << endl;
  }

  return 0;
}
0