結果

問題 No.2247 01 ZigZag
ユーザー 👑 KazunKazun
提出日時 2023-03-17 21:42:54
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 803 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,424 KB
実行使用メモリ 66,712 KB
最終ジャッジ日時 2024-09-18 10:30:47
合計ジャッジ時間 3,458 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,016 KB
testcase_01 AC 37 ms
52,428 KB
testcase_02 AC 36 ms
53,572 KB
testcase_03 AC 44 ms
60,200 KB
testcase_04 AC 36 ms
53,480 KB
testcase_05 AC 40 ms
57,860 KB
testcase_06 AC 40 ms
59,672 KB
testcase_07 AC 34 ms
52,920 KB
testcase_08 AC 42 ms
58,096 KB
testcase_09 AC 42 ms
59,392 KB
testcase_10 AC 38 ms
52,960 KB
testcase_11 AC 42 ms
60,232 KB
testcase_12 AC 42 ms
59,676 KB
testcase_13 AC 43 ms
60,416 KB
testcase_14 AC 37 ms
51,816 KB
testcase_15 AC 40 ms
58,272 KB
testcase_16 AC 42 ms
59,760 KB
testcase_17 AC 41 ms
59,872 KB
testcase_18 AC 35 ms
52,560 KB
testcase_19 AC 36 ms
53,504 KB
testcase_20 AC 36 ms
53,092 KB
testcase_21 AC 39 ms
59,208 KB
testcase_22 AC 42 ms
61,244 KB
testcase_23 AC 40 ms
60,480 KB
testcase_24 AC 38 ms
52,472 KB
testcase_25 AC 42 ms
59,288 KB
testcase_26 AC 40 ms
59,676 KB
testcase_27 AC 39 ms
60,348 KB
testcase_28 AC 42 ms
60,684 KB
testcase_29 AC 43 ms
61,984 KB
testcase_30 AC 42 ms
60,748 KB
testcase_31 AC 34 ms
52,008 KB
testcase_32 AC 38 ms
58,924 KB
testcase_33 AC 38 ms
58,772 KB
testcase_34 AC 38 ms
58,852 KB
testcase_35 AC 37 ms
58,152 KB
testcase_36 AC 38 ms
59,024 KB
testcase_37 AC 40 ms
58,304 KB
testcase_38 AC 38 ms
58,440 KB
testcase_39 AC 38 ms
59,280 KB
testcase_40 AC 34 ms
53,436 KB
testcase_41 RE -
testcase_42 RE -
testcase_43 AC 34 ms
53,268 KB
testcase_44 AC 35 ms
52,328 KB
testcase_45 AC 46 ms
62,364 KB
testcase_46 AC 42 ms
59,440 KB
testcase_47 RE -
testcase_48 RE -
testcase_49 AC 36 ms
53,216 KB
testcase_50 AC 34 ms
52,612 KB
testcase_51 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    N,M,K=map(int,input().split())

    Ans="2"
    if K%2==0:
        if (N>=K//2+1) and (M>=K//2):
            X=["0" if k%2==0 else "1" for k in range(K+1)]
            X[0]+="0"*(N-(K//2+1))
            X[-2]+="1"*(M-K//2)
            Ans=min(Ans, "".join(X))
        if (N>=K//2) and (M>=K//2+1):
            X=["1" if k%2==0 else "0" for k in range(K+1)]
            X[1]+="0"*(N-K//2)
            X[-1]+="1"*(M-(K//2+1))
            Ans=min(Ans, "".join(X))
    else:
        if (N>=(K+1)//2) and (M>=(K+1)//2):
            X=["0" if k%2==0 else "1" for k in range(K+1)]
            X[0]+="0"*(N-(K+1)//2)
            X[-2]+="1"*(M-(K+1)//2)
            Ans=min(Ans, "".join(X))
    return Ans if Ans!="2" else -1


#==================================================
print(solve())
0