結果

問題 No.2247 01 ZigZag
ユーザー first_vilfirst_vil
提出日時 2023-03-17 22:04:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 784 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 81,604 KB
実行使用メモリ 89,804 KB
最終ジャッジ日時 2024-09-18 11:04:01
合計ジャッジ時間 8,444 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,400 KB
testcase_01 AC 38 ms
52,960 KB
testcase_02 AC 40 ms
52,952 KB
testcase_03 AC 278 ms
79,752 KB
testcase_04 AC 39 ms
53,056 KB
testcase_05 AC 43 ms
60,860 KB
testcase_06 AC 107 ms
75,068 KB
testcase_07 AC 39 ms
54,040 KB
testcase_08 AC 209 ms
77,396 KB
testcase_09 AC 291 ms
79,452 KB
testcase_10 AC 37 ms
52,632 KB
testcase_11 AC 99 ms
75,332 KB
testcase_12 AC 59 ms
74,664 KB
testcase_13 AC 75 ms
74,856 KB
testcase_14 AC 38 ms
53,020 KB
testcase_15 AC 52 ms
74,764 KB
testcase_16 AC 68 ms
74,732 KB
testcase_17 AC 562 ms
88,688 KB
testcase_18 AC 38 ms
52,328 KB
testcase_19 AC 37 ms
52,776 KB
testcase_20 AC 37 ms
53,292 KB
testcase_21 AC 59 ms
74,664 KB
testcase_22 AC 161 ms
76,700 KB
testcase_23 AC 99 ms
75,344 KB
testcase_24 AC 37 ms
51,964 KB
testcase_25 AC 207 ms
77,320 KB
testcase_26 AC 104 ms
75,628 KB
testcase_27 AC 41 ms
60,156 KB
testcase_28 AC 335 ms
81,460 KB
testcase_29 AC 434 ms
84,296 KB
testcase_30 AC 317 ms
80,652 KB
testcase_31 AC 38 ms
52,876 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 38 ms
53,076 KB
testcase_42 AC 38 ms
53,132 KB
testcase_43 AC 39 ms
52,952 KB
testcase_44 AC 38 ms
52,908 KB
testcase_45 AC 547 ms
89,804 KB
testcase_46 AC 616 ms
89,464 KB
testcase_47 AC 37 ms
52,964 KB
testcase_48 AC 38 ms
52,200 KB
testcase_49 AC 37 ms
51,816 KB
testcase_50 AC 38 ms
53,112 KB
testcase_51 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,k=map(int,input().split())
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:
                s+="1"
        else:
            if n==0:
                return ""
            else:
                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