結果

問題 No.873 バイナリ、ヤバいなり!w
ユーザー rlangevinrlangevin
提出日時 2023-10-19 21:16:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,179 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 78,436 KB
最終ジャッジ日時 2024-09-19 17:20:10
合計ジャッジ時間 8,326 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 223 ms
74,788 KB
testcase_02 AC 835 ms
78,220 KB
testcase_03 WA -
testcase_04 AC 38 ms
54,864 KB
testcase_05 AC 37 ms
54,340 KB
testcase_06 AC 39 ms
54,724 KB
testcase_07 AC 38 ms
55,176 KB
testcase_08 AC 198 ms
72,856 KB
testcase_09 AC 39 ms
55,796 KB
testcase_10 AC 39 ms
55,964 KB
testcase_11 AC 37 ms
55,280 KB
testcase_12 AC 81 ms
66,808 KB
testcase_13 AC 39 ms
54,600 KB
testcase_14 AC 39 ms
54,600 KB
testcase_15 AC 37 ms
54,612 KB
testcase_16 AC 36 ms
54,916 KB
testcase_17 AC 38 ms
54,628 KB
testcase_18 AC 37 ms
54,448 KB
testcase_19 AC 38 ms
54,728 KB
testcase_20 AC 38 ms
55,388 KB
testcase_21 AC 38 ms
54,776 KB
testcase_22 AC 39 ms
55,308 KB
testcase_23 AC 38 ms
54,900 KB
testcase_24 AC 39 ms
54,880 KB
testcase_25 AC 38 ms
54,964 KB
testcase_26 AC 37 ms
55,128 KB
testcase_27 AC 36 ms
54,932 KB
testcase_28 AC 38 ms
54,976 KB
testcase_29 AC 36 ms
54,740 KB
testcase_30 AC 36 ms
55,436 KB
testcase_31 AC 37 ms
55,128 KB
testcase_32 AC 63 ms
64,276 KB
testcase_33 AC 54 ms
73,232 KB
testcase_34 AC 140 ms
70,980 KB
testcase_35 AC 878 ms
77,976 KB
testcase_36 AC 458 ms
77,392 KB
testcase_37 AC 873 ms
78,220 KB
testcase_38 AC 909 ms
78,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *

def main():
    N = int(input())
    M = int(N ** 0.5) + 2
    inf = 10 ** 18
    dp = [inf] * (N + 1)
    dp[0] = 0
    for i in range(N):
        for j in range(1, M + 1):
            nex = i + j * j
            if i + j * j > N:
                break
            dp[nex] = min(dp[nex], dp[i] + j)
    
    L = []
    while N:
        if N >= M * M:
            if dp[N] == dp[N - M * M] + M:
                N -= M * M
                L.append(M)
                continue
        M -= 1

    def f(t):
        odd, even = [], []
        for i in range(len(t)):
            if t[i] % 2:
                odd.append(t[i])
            else:
                even.append(t[i])
        odd.sort()
        even.sort()
        even = deque(even)
        cnt = 0
        while even:
            if cnt % 2:
                odd.append(even.popleft())
            else:
                odd.append(even.pop())
            cnt += 1
        lst = []
        now = 0
        for a in odd:
            for i in range(a):
                lst.append(str(now))
                now = 1 - now
            now = 1 - now
        return "".join(lst)

    print(f(L))

main()
0