結果

問題 No.2608 Divide into two
ユーザー NPNP
提出日時 2024-01-19 21:50:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 1,000 ms
コード長 343 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 60,544 KB
最終ジャッジ日時 2024-09-28 04:19:20
合計ジャッジ時間 731 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,584 KB
testcase_01 AC 52 ms
59,648 KB
testcase_02 AC 49 ms
60,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
for _ in range(T):
    N = int(input())
    total = N*(N+1)//2
    if total % 2 != 0:
        print(-1)
    else:
        half = total // 2
        result = [0]*N
        for i in range(N, 0, -1):
            if half - i >= 0:
                result[i-1] = 1
                half -= i
        print(''.join(map(str, result)))
0