結果

問題 No.2247 01 ZigZag
ユーザー titiatitia
提出日時 2023-03-17 22:15:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 1,077 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 23,356 KB
最終ジャッジ日時 2024-09-18 16:11:10
合計ジャッジ時間 4,458 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 32 ms
10,624 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 71 ms
16,548 KB
testcase_04 AC 31 ms
10,880 KB
testcase_05 AC 53 ms
15,488 KB
testcase_06 AC 52 ms
13,864 KB
testcase_07 AC 31 ms
10,624 KB
testcase_08 AC 77 ms
18,644 KB
testcase_09 AC 71 ms
16,496 KB
testcase_10 AC 31 ms
10,624 KB
testcase_11 AC 58 ms
15,156 KB
testcase_12 AC 57 ms
15,696 KB
testcase_13 AC 48 ms
13,812 KB
testcase_14 AC 32 ms
10,624 KB
testcase_15 AC 57 ms
16,668 KB
testcase_16 AC 71 ms
18,576 KB
testcase_17 AC 90 ms
19,248 KB
testcase_18 AC 32 ms
10,752 KB
testcase_19 AC 31 ms
10,624 KB
testcase_20 AC 31 ms
10,752 KB
testcase_21 AC 44 ms
12,272 KB
testcase_22 AC 83 ms
19,836 KB
testcase_23 AC 51 ms
13,952 KB
testcase_24 AC 30 ms
10,880 KB
testcase_25 AC 78 ms
18,856 KB
testcase_26 AC 66 ms
17,064 KB
testcase_27 AC 57 ms
16,800 KB
testcase_28 AC 83 ms
19,656 KB
testcase_29 AC 77 ms
17,852 KB
testcase_30 AC 90 ms
20,656 KB
testcase_31 AC 31 ms
10,624 KB
testcase_32 AC 85 ms
19,252 KB
testcase_33 AC 63 ms
15,792 KB
testcase_34 AC 61 ms
15,988 KB
testcase_35 AC 51 ms
14,748 KB
testcase_36 AC 64 ms
15,736 KB
testcase_37 AC 41 ms
12,144 KB
testcase_38 AC 40 ms
11,776 KB
testcase_39 AC 50 ms
13,504 KB
testcase_40 AC 31 ms
10,880 KB
testcase_41 AC 70 ms
17,056 KB
testcase_42 AC 61 ms
16,932 KB
testcase_43 AC 31 ms
10,752 KB
testcase_44 AC 31 ms
10,624 KB
testcase_45 AC 110 ms
23,356 KB
testcase_46 AC 109 ms
23,356 KB
testcase_47 AC 32 ms
10,880 KB
testcase_48 AC 31 ms
10,752 KB
testcase_49 AC 32 ms
10,752 KB
testcase_50 AC 30 ms
10,752 KB
testcase_51 AC 33 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

z=K//2+1
o=(K+1)//2

if N>=z and M>=o:
    ANS=[0]
    for i in range(K):
        ANS.append(ANS[-1]^1)

    rest_0=N-ANS.count(0)
    rest_1=M-ANS.count(1)

    for i in range(len(ANS)):
        if ANS[i]==0:
            ANS=ANS[:i]+[0]*rest_0+ANS[i:]
            break

    for i in range(len(ANS)-1,-1,-1):
        if ANS[i]==1:
            ANS=ANS[:i]+[1]*rest_1+ANS[i:]
            break

    if ANS.count(0)==N and ANS.count(1)==M:
        print("".join(map(str,ANS)))
        exit()

    
o=K//2+1
z=(K+1)//2

if N>=z and M>=o:
    ANS=[1]
    for i in range(K):
        ANS.append(ANS[-1]^1)

    rest_0=N-ANS.count(0)
    rest_1=M-ANS.count(1)

    for i in range(len(ANS)):
        if ANS[i]==0:
            ANS=ANS[:i]+[0]*rest_0+ANS[i:]
            break

    for i in range(len(ANS)-1,-1,-1):
        if ANS[i]==1:
            ANS=ANS[:i]+[1]*rest_1+ANS[i:]
            break

    if ANS.count(0)==N and ANS.count(1)==M:
        print("".join(map(str,ANS)))
        exit()

print(-1)
        
0