結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,492 KB
testcase_01 AC 38 ms
52,756 KB
testcase_02 AC 38 ms
53,460 KB
testcase_03 AC 289 ms
79,732 KB
testcase_04 AC 39 ms
52,408 KB
testcase_05 AC 43 ms
61,652 KB
testcase_06 AC 97 ms
75,352 KB
testcase_07 AC 37 ms
52,804 KB
testcase_08 AC 194 ms
77,240 KB
testcase_09 AC 294 ms
79,092 KB
testcase_10 AC 37 ms
53,296 KB
testcase_11 AC 100 ms
75,168 KB
testcase_12 AC 52 ms
74,780 KB
testcase_13 AC 70 ms
75,008 KB
testcase_14 AC 38 ms
53,176 KB
testcase_15 AC 50 ms
74,904 KB
testcase_16 AC 62 ms
74,936 KB
testcase_17 AC 525 ms
88,784 KB
testcase_18 AC 38 ms
52,360 KB
testcase_19 AC 38 ms
53,724 KB
testcase_20 AC 37 ms
52,052 KB
testcase_21 AC 59 ms
75,004 KB
testcase_22 AC 153 ms
76,580 KB
testcase_23 AC 92 ms
74,980 KB
testcase_24 AC 38 ms
52,144 KB
testcase_25 AC 193 ms
76,908 KB
testcase_26 AC 93 ms
75,096 KB
testcase_27 AC 41 ms
59,884 KB
testcase_28 AC 333 ms
81,644 KB
testcase_29 AC 412 ms
84,124 KB
testcase_30 AC 300 ms
80,484 KB
testcase_31 AC 38 ms
52,624 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 WA -
testcase_42 WA -
testcase_43 AC 39 ms
52,984 KB
testcase_44 AC 38 ms
52,796 KB
testcase_45 AC 521 ms
89,752 KB
testcase_46 AC 521 ms
89,768 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 37 ms
53,540 KB
testcase_50 AC 37 ms
53,076 KB
testcase_51 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,k=map(int,input().split())
d=min(n,m)*2
if n!=m:
    d-=1
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