結果

問題 No.2247 01 ZigZag
ユーザー timitimi
提出日時 2023-03-17 21:57:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 111 ms / 2,000 ms
コード長 1,005 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 111,504 KB
最終ジャッジ日時 2024-09-18 16:08:44
合計ジャッジ時間 4,517 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,380 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 78 ms
98,432 KB
testcase_03 AC 87 ms
94,496 KB
testcase_04 AC 51 ms
73,088 KB
testcase_05 AC 61 ms
75,392 KB
testcase_06 AC 74 ms
86,784 KB
testcase_07 AC 44 ms
68,864 KB
testcase_08 AC 92 ms
95,232 KB
testcase_09 AC 90 ms
94,872 KB
testcase_10 AC 53 ms
78,976 KB
testcase_11 AC 81 ms
88,492 KB
testcase_12 AC 64 ms
80,128 KB
testcase_13 AC 60 ms
78,488 KB
testcase_14 AC 48 ms
70,272 KB
testcase_15 AC 63 ms
78,976 KB
testcase_16 AC 71 ms
89,600 KB
testcase_17 AC 104 ms
103,816 KB
testcase_18 AC 50 ms
81,024 KB
testcase_19 AC 73 ms
97,792 KB
testcase_20 AC 47 ms
74,624 KB
testcase_21 AC 51 ms
73,344 KB
testcase_22 AC 87 ms
97,216 KB
testcase_23 AC 67 ms
86,144 KB
testcase_24 AC 52 ms
82,944 KB
testcase_25 AC 85 ms
95,232 KB
testcase_26 AC 76 ms
93,568 KB
testcase_27 AC 58 ms
77,440 KB
testcase_28 AC 92 ms
102,144 KB
testcase_29 AC 88 ms
96,900 KB
testcase_30 AC 93 ms
99,896 KB
testcase_31 AC 41 ms
67,712 KB
testcase_32 AC 81 ms
98,556 KB
testcase_33 AC 57 ms
80,640 KB
testcase_34 AC 53 ms
76,416 KB
testcase_35 AC 49 ms
69,632 KB
testcase_36 AC 55 ms
83,968 KB
testcase_37 AC 45 ms
68,608 KB
testcase_38 AC 45 ms
68,480 KB
testcase_39 AC 49 ms
76,288 KB
testcase_40 AC 74 ms
97,792 KB
testcase_41 AC 33 ms
52,224 KB
testcase_42 AC 33 ms
52,480 KB
testcase_43 AC 33 ms
51,968 KB
testcase_44 AC 31 ms
52,224 KB
testcase_45 AC 105 ms
111,504 KB
testcase_46 AC 111 ms
111,248 KB
testcase_47 AC 35 ms
52,224 KB
testcase_48 AC 35 ms
52,096 KB
testcase_49 AC 34 ms
51,968 KB
testcase_50 AC 35 ms
51,840 KB
testcase_51 AC 33 ms
52,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,K=map(int, input().split())
if M==0:
  if K==0:
    print('0'*N)
  else:
    print(-1)
  exit()

if N==0:
  if K==0:
    print('1'*M)
  else:
    print(-1)
  exit()
  
if K==0:
  print(-1)
  exit()
  
a,b=N,M  
A=[['0',1]]
C=[]
a-=1
for i in range(K):
  if i%2==0:
    A.append(['1',1])
    b-=1
  else:
    A.append(['0',1])
    a-=1

if a>=0 and b>=0:
  for i in range(2):
    if A[i][0]=='0':
      A[i][1]+=a 
  for i in range(2):
    if A[-1-i][0]=='1':
      A[-1-i][1]+=b 
  B=[]
  for a,b in A:
    for i in range(b):
      B.append(a)
  B=''.join(B)
  C.append(B)
  
a,b=N,M 
A=[['1',1]]
b-=1
for i in range(K):
  if i%2==0:
    A.append(['0',1])
    a-=1
  else:
    A.append(['1',1])
    b-=1

if a>=0 and b>=0:
  for i in range(2):
    if A[i][0]=='0':
      A[i][1]+=a 
  for i in range(2):
    if A[-1-i][0]=='1':
      A[-1-i][1]+=b 
  B=[]
  for a,b in A:
    for i in range(b):
      B.append(a)
  B=''.join(B)
  C.append(B)
if len(C)==0:
  print(-1)
else:
  C=sorted(C)
  print(C[0])
0