結果

問題 No.2608 Divide into two
ユーザー なえしらなえしら
提出日時 2024-05-13 20:04:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 1,000 ms
コード長 267 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 60,372 KB
最終ジャッジ日時 2024-05-13 20:04:21
合計ジャッジ時間 1,485 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

for _ in range(T := int(input())):
  N = int(input())

  S = N*(N+1)//2
  if S%2 == 1:
    print(-1)
    continue

  S //= 2
  ans = ['0']*N
  for i in range(1, N+1):
    S -= i
    ans[i-1] = '1'
    if S <= 0: break
  if S < 0: ans[-S-1] = '0'
  print("".join(ans))
0