結果
問題 | No.2608 Divide into two |
ユーザー | hiro1729 |
提出日時 | 2024-01-19 21:24:58 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 44 ms / 1,000 ms |
コード長 | 525 bytes |
コンパイル時間 | 298 ms |
コンパイル使用メモリ | 82,516 KB |
実行使用メモリ | 60,028 KB |
最終ジャッジ日時 | 2024-09-28 03:54:47 |
合計ジャッジ時間 | 795 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
52,668 KB |
testcase_01 | AC | 39 ms
54,056 KB |
testcase_02 | AC | 44 ms
60,028 KB |
ソースコード
S = input R = range P = print def I(): return int(S()) def M(): return map(int, S().split()) def L(): return list(M()) def O(): return list(map(int, open(0).read().split())) def yn(b): print("Yes" if b else "No") biga = "ABCDEFGHIJKLMNOPQRSTUVWXYZ" smaa = "abcdefghijklmnopqrstuvwxyz" for _ in R(I()): n = I() if n*(n+1)//2%2: print(-1) continue k = n*(n+1)//4 x = n a = [] while k >= x: k -= x a.append(x) x -= 1 if k > 0: a.append(k) ans = ['0'] * n for i in a: ans[i - 1] = '1' print(''.join(ans))