結果

問題 No.2247 01 ZigZag
ユーザー okapinokapin
提出日時 2023-03-17 22:49:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 543 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 54,808 KB
最終ジャッジ日時 2024-09-18 11:58:37
合計ジャッジ時間 3,684 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,456 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 38 ms
51,840 KB
testcase_03 AC 40 ms
52,480 KB
testcase_04 AC 39 ms
51,968 KB
testcase_05 AC 39 ms
52,224 KB
testcase_06 AC 41 ms
52,096 KB
testcase_07 AC 39 ms
51,712 KB
testcase_08 AC 39 ms
51,840 KB
testcase_09 AC 41 ms
52,096 KB
testcase_10 AC 40 ms
51,712 KB
testcase_11 AC 40 ms
52,480 KB
testcase_12 AC 39 ms
52,608 KB
testcase_13 AC 41 ms
52,096 KB
testcase_14 AC 40 ms
51,584 KB
testcase_15 AC 40 ms
51,712 KB
testcase_16 AC 41 ms
52,736 KB
testcase_17 AC 39 ms
52,224 KB
testcase_18 AC 39 ms
51,712 KB
testcase_19 AC 39 ms
51,584 KB
testcase_20 AC 38 ms
51,712 KB
testcase_21 AC 41 ms
52,660 KB
testcase_22 AC 40 ms
53,652 KB
testcase_23 AC 41 ms
52,196 KB
testcase_24 AC 38 ms
52,564 KB
testcase_25 AC 39 ms
53,136 KB
testcase_26 AC 38 ms
53,908 KB
testcase_27 AC 40 ms
53,672 KB
testcase_28 AC 39 ms
53,840 KB
testcase_29 AC 39 ms
53,068 KB
testcase_30 AC 39 ms
53,120 KB
testcase_31 AC 38 ms
52,104 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 38 ms
52,772 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 40 ms
52,804 KB
testcase_42 AC 41 ms
53,300 KB
testcase_43 AC 39 ms
52,068 KB
testcase_44 AC 39 ms
52,188 KB
testcase_45 AC 39 ms
54,280 KB
testcase_46 AC 38 ms
53,084 KB
testcase_47 AC 38 ms
53,176 KB
testcase_48 AC 38 ms
53,252 KB
testcase_49 AC 39 ms
52,760 KB
testcase_50 AC 37 ms
53,132 KB
testcase_51 AC 38 ms
52,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m, k = map(int, input().split())


def f(k):
    c = (k-1)//2
    if c >= n or c >= m:
        return -1
    else:
        return '0'*(n-c)+'10'*c+'1'*(m-c)


if k % 2:
    print(f(k))
else:
    if k == 0:
        if m == 0:
            print('0'*n)
        elif n == 0:
            print('1'*m)
        else:
            print(-1)
    else:
        res = f(k-1)
        if res == -1:
            print(-1)
        else:
            res = f(k-1)[1:]+'0'
            if res[0] == '1':
                res = res[1:]+'1'
            print(res)
0