結果

問題 No.2247 01 ZigZag
ユーザー colognecologne
提出日時 2023-03-21 13:50:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 843 bytes
コンパイル時間 331 ms
コンパイル使用メモリ 81,924 KB
実行使用メモリ 89,676 KB
最終ジャッジ日時 2024-09-18 16:16:23
合計ジャッジ時間 4,537 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 62 ms
74,112 KB
testcase_04 AC 39 ms
51,584 KB
testcase_05 AC 62 ms
73,472 KB
testcase_06 AC 65 ms
71,296 KB
testcase_07 AC 40 ms
51,840 KB
testcase_08 AC 64 ms
80,512 KB
testcase_09 AC 65 ms
75,520 KB
testcase_10 AC 40 ms
52,608 KB
testcase_11 AC 61 ms
72,320 KB
testcase_12 AC 65 ms
73,728 KB
testcase_13 AC 62 ms
70,400 KB
testcase_14 AC 38 ms
52,224 KB
testcase_15 AC 63 ms
73,984 KB
testcase_16 AC 70 ms
78,976 KB
testcase_17 AC 69 ms
82,616 KB
testcase_18 AC 39 ms
51,968 KB
testcase_19 AC 40 ms
51,584 KB
testcase_20 AC 40 ms
51,968 KB
testcase_21 AC 54 ms
65,280 KB
testcase_22 AC 68 ms
82,176 KB
testcase_23 AC 58 ms
68,864 KB
testcase_24 AC 40 ms
52,096 KB
testcase_25 AC 69 ms
79,616 KB
testcase_26 AC 66 ms
76,544 KB
testcase_27 AC 63 ms
77,568 KB
testcase_28 AC 64 ms
82,048 KB
testcase_29 AC 64 ms
76,544 KB
testcase_30 AC 70 ms
84,352 KB
testcase_31 AC 38 ms
52,480 KB
testcase_32 AC 66 ms
81,664 KB
testcase_33 AC 57 ms
73,088 KB
testcase_34 AC 58 ms
73,344 KB
testcase_35 AC 56 ms
70,656 KB
testcase_36 AC 55 ms
72,320 KB
testcase_37 AC 50 ms
63,232 KB
testcase_38 AC 48 ms
62,720 KB
testcase_39 AC 52 ms
66,432 KB
testcase_40 AC 39 ms
52,352 KB
testcase_41 AC 53 ms
70,528 KB
testcase_42 AC 52 ms
69,248 KB
testcase_43 AC 40 ms
52,608 KB
testcase_44 AC 40 ms
52,096 KB
testcase_45 AC 82 ms
89,676 KB
testcase_46 AC 80 ms
89,600 KB
testcase_47 AC 40 ms
51,712 KB
testcase_48 AC 38 ms
51,584 KB
testcase_49 AC 39 ms
51,712 KB
testcase_50 AC 40 ms
51,968 KB
testcase_51 AC 41 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**6)


def ok(N, M, K):
    mn = 1 if M > 0 else 0
    mx = min(2*M, 2*N+1)
    return mn <= K <= mx


def s(N, M, K, L):
    if L == 0 and not ok(N, M, K):
        return None
    if L == 1 and not ok(M, N, K):
        return None
    arr = [L]
    for i in range(N+M):
        if N > 0 and ok(N-1, M, K - (L != 0)):
            arr.append(0)
            N -= 1
            K -= L != 0
            L = 0
        else:
            arr.append(1)
            M -= 1
            K -= L != 1
            L = 1
    return ''.join(map(str, arr))


def main():
    N, M, K = map(int, input().split())
    A = None
    if N > 0:
        A = s(N-1, M, K, 0)
    if M > 0 and A is None:
        A = s(N, M-1, K, 1)
    if A is None:
        print(-1)
    else:
        print(A)


if __name__ == '__main__':
    main()
0