結果

問題 No.873 バイナリ、ヤバいなり!w
ユーザー vwxyzvwxyz
提出日時 2024-04-15 11:41:20
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 632 bytes
コンパイル時間 1,405 ms
コンパイル使用メモリ 81,656 KB
実行使用メモリ 78,664 KB
最終ジャッジ日時 2024-10-05 07:02:01
合計ジャッジ時間 6,263 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 149 ms
68,648 KB
testcase_02 AC 499 ms
78,392 KB
testcase_03 AC 421 ms
78,292 KB
testcase_04 AC 40 ms
56,040 KB
testcase_05 AC 39 ms
54,660 KB
testcase_06 AC 39 ms
54,460 KB
testcase_07 AC 40 ms
53,912 KB
testcase_08 AC 147 ms
69,464 KB
testcase_09 AC 36 ms
54,332 KB
testcase_10 AC 35 ms
53,668 KB
testcase_11 AC 35 ms
55,032 KB
testcase_12 AC 68 ms
65,256 KB
testcase_13 AC 36 ms
54,504 KB
testcase_14 AC 36 ms
55,228 KB
testcase_15 AC 36 ms
54,492 KB
testcase_16 AC 35 ms
55,472 KB
testcase_17 AC 36 ms
53,944 KB
testcase_18 AC 37 ms
55,848 KB
testcase_19 AC 37 ms
54,000 KB
testcase_20 AC 37 ms
55,348 KB
testcase_21 AC 37 ms
54,424 KB
testcase_22 AC 36 ms
54,364 KB
testcase_23 AC 37 ms
54,540 KB
testcase_24 AC 36 ms
54,788 KB
testcase_25 AC 37 ms
54,940 KB
testcase_26 AC 36 ms
54,560 KB
testcase_27 AC 36 ms
54,992 KB
testcase_28 AC 36 ms
55,300 KB
testcase_29 AC 37 ms
54,908 KB
testcase_30 AC 38 ms
54,276 KB
testcase_31 AC 38 ms
54,104 KB
testcase_32 AC 57 ms
64,660 KB
testcase_33 AC 49 ms
64,444 KB
testcase_34 AC 106 ms
67,360 KB
testcase_35 AC 532 ms
78,664 KB
testcase_36 AC 294 ms
75,184 KB
testcase_37 AC 523 ms
78,432 KB
testcase_38 AC 524 ms
78,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
N=int(input())
inf=1<<30
dp=[inf]*(N+1)
dp[0]=0
for i in range(1,N+1):
    for j in range(1,int(i**.5)+1):
        dp[i]=min(dp[i],dp[i-j*j]+j)
lst=[[],[]]
i=N
while i:
    for j in range(1,int(i**.5)+1):
        if dp[i]==dp[i-j*j]+j:
            i-=j*j
            lst[j%2].append(j)
            break
ans_lst=[]
lst[0].sort()
lst[1].sort()
for x in lst[1]:
    for i in range(x):
        ans_lst.append(i%2)
p=0
queue=deque(lst[0])
while queue:
    if p:
        x=queue.popleft()
    else:
        x=queue.pop()
    for i in range(x):
        ans_lst.append((i+p)%2)
    p^=1
print(*ans_lst,sep="")
0