結果

問題 No.2247 01 ZigZag
ユーザー first_vilfirst_vil
提出日時 2023-03-17 22:13:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 746 ms / 2,000 ms
コード長 921 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 89,848 KB
最終ジャッジ日時 2024-09-18 16:11:05
合計ジャッジ時間 10,579 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 382 ms
79,744 KB
testcase_04 AC 39 ms
51,968 KB
testcase_05 AC 45 ms
60,544 KB
testcase_06 AC 117 ms
75,428 KB
testcase_07 AC 41 ms
52,096 KB
testcase_08 AC 264 ms
77,056 KB
testcase_09 AC 362 ms
79,232 KB
testcase_10 AC 40 ms
52,608 KB
testcase_11 AC 130 ms
75,136 KB
testcase_12 AC 62 ms
75,136 KB
testcase_13 AC 85 ms
75,368 KB
testcase_14 AC 38 ms
52,224 KB
testcase_15 AC 54 ms
75,136 KB
testcase_16 AC 77 ms
75,136 KB
testcase_17 AC 708 ms
88,832 KB
testcase_18 AC 38 ms
51,712 KB
testcase_19 AC 38 ms
52,224 KB
testcase_20 AC 39 ms
52,096 KB
testcase_21 AC 63 ms
74,752 KB
testcase_22 AC 209 ms
77,056 KB
testcase_23 AC 116 ms
75,520 KB
testcase_24 AC 39 ms
52,480 KB
testcase_25 AC 257 ms
77,312 KB
testcase_26 AC 119 ms
75,904 KB
testcase_27 AC 41 ms
59,136 KB
testcase_28 AC 478 ms
81,792 KB
testcase_29 AC 524 ms
84,480 KB
testcase_30 AC 389 ms
80,860 KB
testcase_31 AC 41 ms
52,608 KB
testcase_32 AC 714 ms
85,208 KB
testcase_33 AC 269 ms
77,080 KB
testcase_34 AC 139 ms
75,776 KB
testcase_35 AC 69 ms
74,860 KB
testcase_36 AC 400 ms
79,064 KB
testcase_37 AC 82 ms
75,228 KB
testcase_38 AC 109 ms
75,368 KB
testcase_39 AC 269 ms
76,544 KB
testcase_40 AC 40 ms
51,840 KB
testcase_41 AC 40 ms
52,864 KB
testcase_42 AC 41 ms
52,352 KB
testcase_43 AC 39 ms
52,096 KB
testcase_44 AC 40 ms
51,840 KB
testcase_45 AC 746 ms
89,728 KB
testcase_46 AC 697 ms
89,848 KB
testcase_47 AC 39 ms
52,096 KB
testcase_48 AC 38 ms
51,712 KB
testcase_49 AC 41 ms
51,712 KB
testcase_50 AC 41 ms
52,096 KB
testcase_51 AC 40 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,k=map(int,input().split())
if k==0:
    if min(n,m)==0:
        print("0"*n+"1"*m)
    else:
        print(-1)
    exit()
d=min(n,m)*2
if n==m:
    d-=1
d=max(d,0)
if d<k:
    print(-1)
    exit()

def f(n,m,k):
    if n==0:
        return ""
    s="0"
    n-=1
    for i in range(k):
        if ~i&1:
            if m==0:
                return ""
            else:
                m-=1
                s+="1"
        else:
            if n==0:
                return ""
            else:
                n-=1
                s+="0"
    return s
    
s=f(n,m,k)
if not s:
    s=f(m,n,k)
    s=s.replace("1","x").replace("0","1").replace("x","0")
n-=s.count("0")
m-=s.count("1")
if n:
    for i in range(len(s)):
        if s[i]=="0":
            s=s[:i]+"0"*(n+1)+s[i+1:]
            break
if m:
    for i in range(len(s))[::-1]:
        if s[i]=="1":
            s=s[:i]+"1"*(m+1)+s[i+1:]
            break
print(s)
0