結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 44 ms
52,624 KB
testcase_06 AC 42 ms
52,332 KB
testcase_07 AC 44 ms
52,260 KB
testcase_08 WA -
testcase_09 AC 42 ms
52,320 KB
testcase_10 AC 43 ms
53,000 KB
testcase_11 AC 40 ms
53,396 KB
testcase_12 AC 48 ms
58,856 KB
testcase_13 AC 43 ms
52,660 KB
testcase_14 AC 43 ms
52,628 KB
testcase_15 AC 44 ms
53,520 KB
testcase_16 AC 44 ms
52,392 KB
testcase_17 AC 43 ms
52,756 KB
testcase_18 AC 44 ms
52,392 KB
testcase_19 AC 43 ms
53,536 KB
testcase_20 AC 42 ms
53,368 KB
testcase_21 AC 41 ms
53,036 KB
testcase_22 AC 41 ms
53,204 KB
testcase_23 AC 42 ms
52,256 KB
testcase_24 AC 43 ms
53,756 KB
testcase_25 AC 42 ms
53,552 KB
testcase_26 AC 43 ms
53,020 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 44 ms
53,040 KB
testcase_34 AC 52 ms
62,080 KB
testcase_35 WA -
testcase_36 AC 55 ms
61,928 KB
testcase_37 WA -
testcase_38 AC 62 ms
66,016 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
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