結果

問題 No.2247 01 ZigZag
ユーザー roarisroaris
提出日時 2023-03-17 21:45:04
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 677 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 82,040 KB
実行使用メモリ 93,824 KB
最終ジャッジ日時 2024-09-18 16:06:47
合計ジャッジ時間 4,013 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,016 KB
testcase_01 AC 35 ms
53,376 KB
testcase_02 AC 47 ms
71,808 KB
testcase_03 AC 58 ms
81,024 KB
testcase_04 AC 46 ms
65,792 KB
testcase_05 AC 51 ms
66,560 KB
testcase_06 AC 56 ms
71,296 KB
testcase_07 AC 46 ms
64,000 KB
testcase_08 AC 59 ms
79,872 KB
testcase_09 AC 56 ms
80,896 KB
testcase_10 AC 49 ms
68,480 KB
testcase_11 AC 50 ms
72,192 KB
testcase_12 AC 48 ms
68,736 KB
testcase_13 AC 50 ms
68,608 KB
testcase_14 AC 45 ms
64,000 KB
testcase_15 AC 47 ms
67,456 KB
testcase_16 AC 50 ms
72,192 KB
testcase_17 AC 63 ms
89,472 KB
testcase_18 AC 46 ms
69,376 KB
testcase_19 AC 49 ms
73,984 KB
testcase_20 AC 43 ms
66,816 KB
testcase_21 AC 47 ms
66,688 KB
testcase_22 AC 57 ms
79,232 KB
testcase_23 AC 50 ms
71,168 KB
testcase_24 AC 48 ms
70,656 KB
testcase_25 AC 58 ms
80,512 KB
testcase_26 AC 54 ms
73,856 KB
testcase_27 AC 49 ms
66,688 KB
testcase_28 AC 63 ms
85,632 KB
testcase_29 AC 61 ms
85,888 KB
testcase_30 AC 59 ms
85,364 KB
testcase_31 AC 41 ms
63,268 KB
testcase_32 AC 62 ms
83,712 KB
testcase_33 AC 51 ms
75,392 KB
testcase_34 AC 50 ms
71,680 KB
testcase_35 AC 45 ms
67,840 KB
testcase_36 AC 54 ms
77,824 KB
testcase_37 AC 46 ms
66,816 KB
testcase_38 AC 46 ms
66,688 KB
testcase_39 AC 47 ms
71,808 KB
testcase_40 AC 49 ms
73,856 KB
testcase_41 AC 41 ms
64,768 KB
testcase_42 AC 41 ms
64,512 KB
testcase_43 AC 36 ms
53,760 KB
testcase_44 AC 37 ms
53,504 KB
testcase_45 AC 66 ms
93,568 KB
testcase_46 AC 66 ms
93,824 KB
testcase_47 AC 36 ms
53,376 KB
testcase_48 AC 36 ms
53,504 KB
testcase_49 AC 38 ms
53,504 KB
testcase_50 AC 36 ms
53,888 KB
testcase_51 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

def g(x):
    l = [x]
    
    for _ in range(K):
        l.append(l[-1]^1)
    
    return l

N, M, K = map(int, input().split())
l0, l1 = g(0), g(1)

if l0.count(0)<=N and l0.count(1)<=M:
    l = l0
elif l1.count(0)<=N and l1.count(1)<=M:
    l = l1
else:
    exit(print(-1))

idx1, idx2 = -1, -1

for i in range(len(l)):
    if l[i]==0:
        if idx1==-1:
            idx1 = i
    else:
        idx2 = i

ans = []

for i in range(len(l)):
    ans.append(l[i])
    
    if i==idx1:
        ans += [0]*(N-l.count(0))
    elif i==idx2:
        ans += [1]*(M-l.count(1))

ans = ''.join(map(str, ans))
print(ans)
0