結果

問題 No.873 バイナリ、ヤバいなり!w
ユーザー tktk_snsntktk_snsn
提出日時 2021-02-07 20:43:14
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,019 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 77,184 KB
最終ジャッジ日時 2024-07-04 13:46:09
合計ジャッジ時間 18,285 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 424 ms
76,800 KB
testcase_02 AC 430 ms
76,544 KB
testcase_03 AC 428 ms
76,800 KB
testcase_04 AC 430 ms
77,184 KB
testcase_05 AC 434 ms
76,544 KB
testcase_06 AC 425 ms
76,544 KB
testcase_07 AC 419 ms
76,544 KB
testcase_08 AC 414 ms
76,544 KB
testcase_09 AC 424 ms
76,928 KB
testcase_10 AC 424 ms
76,928 KB
testcase_11 AC 422 ms
76,544 KB
testcase_12 AC 422 ms
76,544 KB
testcase_13 AC 421 ms
76,672 KB
testcase_14 AC 426 ms
76,544 KB
testcase_15 AC 421 ms
76,544 KB
testcase_16 AC 422 ms
76,672 KB
testcase_17 AC 420 ms
76,800 KB
testcase_18 AC 423 ms
76,928 KB
testcase_19 AC 400 ms
76,800 KB
testcase_20 AC 420 ms
76,544 KB
testcase_21 AC 430 ms
76,672 KB
testcase_22 AC 427 ms
76,800 KB
testcase_23 AC 404 ms
76,544 KB
testcase_24 AC 424 ms
77,056 KB
testcase_25 AC 421 ms
76,544 KB
testcase_26 AC 426 ms
76,800 KB
testcase_27 AC 424 ms
76,928 KB
testcase_28 AC 408 ms
76,928 KB
testcase_29 AC 422 ms
76,544 KB
testcase_30 AC 415 ms
76,800 KB
testcase_31 AC 415 ms
76,928 KB
testcase_32 AC 430 ms
76,544 KB
testcase_33 AC 417 ms
76,672 KB
testcase_34 AC 416 ms
76,928 KB
testcase_35 AC 415 ms
76,928 KB
testcase_36 AC 416 ms
76,928 KB
testcase_37 AC 419 ms
76,928 KB
testcase_38 AC 423 ms
76,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
U = 3 * 10 ** 5
Usq = int(U ** 0.5 + 0.5)
sq = [i*i for i in range(Usq)]

dp = [U] * (U + 1)
prev = [-1] * (U + 1)  # p*pマス戻る、-1ならおわり
for i, s in enumerate(sq):
    prev[s] = i
    dp[s] = i
for i in range(1, U + 1):
    for j, s in enumerate(sq):
        if s > i:
            break
        if dp[i] > dp[i - s] + j:
            prev[i] = j
            dp[i] = dp[i - s] + j


N = int(input())
seq = []
i = N
while i:
    p = prev[i]
    seq.append(p)
    i -= p * p

seq.sort()
odd = []
even = []
for s in seq:
    if s % 2 == 0:
        even.append(s)
    else:
        odd.append(s)

ans = []
for s in odd:
    bit = "".join(["0" if i % 2 == 0 else "1" for i in range(s)])
    ans.append(bit)

even = deque(even)
rev = 0
while even:
    if rev:
        s = even.popleft()
    else:
        s = even.pop()
    bit = "".join(["0" if i % 2 == 0 else "1" for i in range(s)])
    if rev:
        bit = bit[::-1]
    ans.append(bit)
    rev = 1 - rev

print("".join(ans))
0