結果

問題 No.873 バイナリ、ヤバいなり!w
ユーザー nadarenadare
提出日時 2019-08-30 23:14:52
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 769 bytes
コンパイル時間 370 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 78,568 KB
最終ジャッジ日時 2024-06-24 01:46:03
合計ジャッジ時間 14,098 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 386 ms
69,692 KB
testcase_02 AC 1,557 ms
78,128 KB
testcase_03 AC 1,250 ms
77,848 KB
testcase_04 AC 43 ms
54,596 KB
testcase_05 AC 43 ms
53,820 KB
testcase_06 AC 45 ms
55,200 KB
testcase_07 AC 43 ms
53,932 KB
testcase_08 AC 342 ms
68,708 KB
testcase_09 AC 42 ms
54,768 KB
testcase_10 AC 42 ms
54,340 KB
testcase_11 AC 44 ms
54,060 KB
testcase_12 AC 123 ms
66,208 KB
testcase_13 AC 43 ms
54,144 KB
testcase_14 AC 42 ms
54,468 KB
testcase_15 AC 43 ms
54,172 KB
testcase_16 AC 43 ms
54,100 KB
testcase_17 AC 42 ms
54,168 KB
testcase_18 AC 42 ms
54,460 KB
testcase_19 AC 42 ms
54,848 KB
testcase_20 AC 42 ms
54,676 KB
testcase_21 AC 43 ms
54,312 KB
testcase_22 AC 42 ms
54,596 KB
testcase_23 AC 42 ms
55,072 KB
testcase_24 AC 42 ms
54,504 KB
testcase_25 AC 42 ms
54,164 KB
testcase_26 AC 43 ms
54,848 KB
testcase_27 AC 44 ms
54,772 KB
testcase_28 AC 44 ms
55,332 KB
testcase_29 AC 42 ms
54,268 KB
testcase_30 AC 43 ms
55,108 KB
testcase_31 AC 42 ms
53,988 KB
testcase_32 AC 84 ms
64,140 KB
testcase_33 AC 57 ms
64,336 KB
testcase_34 AC 227 ms
67,592 KB
testcase_35 AC 1,603 ms
78,116 KB
testcase_36 AC 827 ms
75,812 KB
testcase_37 AC 1,599 ms
78,568 KB
testcase_38 AC 1,608 ms
78,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
def inpl(): return list(map(int, input().split()))

N = int(input())

DP = [10**9]*(N+1)
DP[0] = 0
F = [i**2 for i in range(1, 550)]
E = []
O = []

for i in range(N):
    for j, f in enumerate(F, start=1):
        if i + f > N:
            break
        DP[i+f] = min(DP[i+f], DP[i]+j)

x = N
while x:
    for j, f in enumerate(F, start=1):
        if DP[x] == DP[x-f] + j:
            if j%2:
                O.append(j)
            else:
                E.append(j)
            x -= f
            break


O = sorted(O)
E = deque(sorted(E))

ans = []

for o in O:
    ans.append("01"*(o//2) + "0")

while E:
    e = E.pop()
    ans.append("01"*(e//2))
    if E:
        e = E.popleft()
        ans.append("10"*(e//2))

print("".join(ans))
0