結果

問題 No.873 バイナリ、ヤバいなり!w
ユーザー maspymaspy
提出日時 2020-03-19 15:13:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 527 ms / 2,000 ms
コード長 1,412 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 76,416 KB
最終ジャッジ日時 2024-06-11 14:05:25
合計ジャッジ時間 6,086 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 246 ms
69,376 KB
testcase_01 AC 148 ms
65,664 KB
testcase_02 AC 491 ms
75,904 KB
testcase_03 AC 418 ms
73,728 KB
testcase_04 AC 37 ms
52,224 KB
testcase_05 AC 35 ms
52,096 KB
testcase_06 AC 36 ms
51,968 KB
testcase_07 AC 35 ms
52,224 KB
testcase_08 AC 136 ms
65,152 KB
testcase_09 AC 35 ms
51,584 KB
testcase_10 AC 37 ms
52,224 KB
testcase_11 AC 35 ms
52,096 KB
testcase_12 AC 67 ms
61,952 KB
testcase_13 AC 36 ms
52,224 KB
testcase_14 AC 36 ms
52,096 KB
testcase_15 AC 36 ms
52,224 KB
testcase_16 AC 35 ms
52,224 KB
testcase_17 AC 35 ms
51,968 KB
testcase_18 AC 36 ms
51,840 KB
testcase_19 AC 35 ms
52,352 KB
testcase_20 AC 35 ms
52,096 KB
testcase_21 AC 36 ms
52,480 KB
testcase_22 AC 36 ms
52,352 KB
testcase_23 AC 36 ms
52,096 KB
testcase_24 AC 35 ms
52,352 KB
testcase_25 AC 37 ms
52,352 KB
testcase_26 AC 36 ms
51,968 KB
testcase_27 AC 36 ms
52,224 KB
testcase_28 AC 35 ms
51,968 KB
testcase_29 AC 35 ms
52,352 KB
testcase_30 AC 36 ms
51,968 KB
testcase_31 AC 35 ms
52,096 KB
testcase_32 AC 54 ms
60,928 KB
testcase_33 AC 44 ms
59,648 KB
testcase_34 AC 98 ms
63,616 KB
testcase_35 AC 512 ms
76,416 KB
testcase_36 AC 287 ms
70,144 KB
testcase_37 AC 522 ms
76,160 KB
testcase_38 AC 527 ms
76,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/ python3.8
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

N = int(read())

dp = [0] * (N + 1)

for n in range(1, N + 1):
    x = n
    for i in range(1, N + 1):
        m = n - i * i
        if m < 0:
            break
        y = dp[m] + i
        if x > y:
            x = y
    dp[n] = x


def find_next_num_odd(N):
    for i in range(1, N + 1, 2):
        m = N - i * i
        if m < 0:
            break
        if dp[N] == dp[m] + i:
            return i
    return None


def find_next_num_even(N, reverse=True):
    U = int((N + 1) ** .5)
    if U & 1:
        U += 1
    rng = range(2, U + 1, 2)
    if reverse:
        rng = reversed(rng)
    for i in rng:
        m = N - i * i
        if m < 0:
            continue
        if dp[N] == dp[m] + i:
            return i


nums = []
while N:
    i = find_next_num_odd(N)
    if not i:
        break
    nums.append(i)
    N -= i * i


rev = True
while N:
    i = find_next_num_even(N, rev)
    rev = not rev
    nums.append(i)
    N -= i * i


def to_word(N, next_ch):
    q, r = divmod(N, 2)
    w = '01' if next_ch == 0 else '10'
    if r == 0:
        return w * q
    else:
        return w * q + str(next_ch)


words = []
next_ch = 0
for n in nums:
    words.append(to_word(n, next_ch))
    if not (n & 1):
        next_ch ^= 1
answer = ''.join(words)
print(answer)
0