結果

問題 No.873 バイナリ、ヤバいなり!w
ユーザー もりをもりを
提出日時 2019-08-30 21:49:06
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 805 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 68,980 KB
最終ジャッジ日時 2024-06-24 01:25:13
合計ジャッジ時間 2,982 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 38 ms
53,572 KB
testcase_06 AC 38 ms
52,464 KB
testcase_07 AC 38 ms
52,468 KB
testcase_08 WA -
testcase_09 AC 37 ms
53,276 KB
testcase_10 AC 39 ms
53,484 KB
testcase_11 AC 39 ms
52,936 KB
testcase_12 AC 46 ms
59,916 KB
testcase_13 AC 38 ms
53,072 KB
testcase_14 AC 38 ms
53,864 KB
testcase_15 AC 40 ms
52,448 KB
testcase_16 AC 39 ms
52,200 KB
testcase_17 AC 38 ms
54,064 KB
testcase_18 AC 38 ms
54,196 KB
testcase_19 AC 39 ms
52,792 KB
testcase_20 AC 38 ms
53,548 KB
testcase_21 AC 38 ms
53,380 KB
testcase_22 AC 39 ms
52,956 KB
testcase_23 AC 39 ms
52,468 KB
testcase_24 AC 38 ms
53,908 KB
testcase_25 AC 38 ms
52,708 KB
testcase_26 AC 38 ms
53,832 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 40 ms
53,392 KB
testcase_34 AC 49 ms
61,356 KB
testcase_35 WA -
testcase_36 AC 52 ms
65,824 KB
testcase_37 WA -
testcase_38 AC 58 ms
68,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

l = [10 ** 100]
n = int(input())
for i in range(int(n ** 0.5), 0, -1):
    q = [i]
    m = n - i ** 2
    while m:
        p = int(m ** 0.5)
        q.append(p)
        m -= p ** 2
    if sum(q) < sum(l):
        l = q
    elif sum(q) == sum(l):
        if sum(i % 2 for i in q) > sum(i % 2 for i in l):
            l = q
odd, even = [], []
for i in l:
    if i % 2 == 1:
        odd.append(i)
    else:
        even.append(i)
odd = sorted(odd)
even = sorted(even)

def f(fir, sz):
    ret = ''
    if fir == 0:
        ret += '01' * (sz // 2)
        if sz % 2 == 1:
            ret += '0'
    else:
        ret += '10' * (sz // 2)
        if sz % 2 == 1:
            ret += '1'
    return ret

res = ''
for i in odd:
    res += f(0, i)
fir = 0
for i in even:
    res += f(fir, i)
    fir ^= 1
print(res)
0