結果

問題 No.2247 01 ZigZag
ユーザー timitimi
提出日時 2023-03-17 21:54:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 984 bytes
コンパイル時間 502 ms
コンパイル使用メモリ 82,020 KB
実行使用メモリ 111,584 KB
最終ジャッジ日時 2024-09-18 10:47:10
合計ジャッジ時間 5,494 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,540 KB
testcase_01 AC 39 ms
53,704 KB
testcase_02 AC 86 ms
98,220 KB
testcase_03 AC 99 ms
94,192 KB
testcase_04 AC 53 ms
73,304 KB
testcase_05 AC 66 ms
76,228 KB
testcase_06 AC 79 ms
86,624 KB
testcase_07 AC 51 ms
69,128 KB
testcase_08 AC 95 ms
95,132 KB
testcase_09 AC 94 ms
94,604 KB
testcase_10 AC 57 ms
79,236 KB
testcase_11 AC 81 ms
88,264 KB
testcase_12 AC 68 ms
80,000 KB
testcase_13 AC 64 ms
78,588 KB
testcase_14 AC 52 ms
70,796 KB
testcase_15 AC 68 ms
79,144 KB
testcase_16 AC 78 ms
89,996 KB
testcase_17 AC 112 ms
103,992 KB
testcase_18 AC 58 ms
81,332 KB
testcase_19 AC 86 ms
97,628 KB
testcase_20 AC 55 ms
76,000 KB
testcase_21 AC 60 ms
74,044 KB
testcase_22 AC 99 ms
97,328 KB
testcase_23 AC 80 ms
85,744 KB
testcase_24 AC 60 ms
82,944 KB
testcase_25 AC 98 ms
94,952 KB
testcase_26 AC 87 ms
93,492 KB
testcase_27 AC 67 ms
77,832 KB
testcase_28 AC 107 ms
102,260 KB
testcase_29 AC 100 ms
96,796 KB
testcase_30 AC 105 ms
99,872 KB
testcase_31 AC 49 ms
68,980 KB
testcase_32 AC 96 ms
98,484 KB
testcase_33 AC 63 ms
80,972 KB
testcase_34 AC 61 ms
77,600 KB
testcase_35 AC 57 ms
70,548 KB
testcase_36 AC 65 ms
84,588 KB
testcase_37 AC 53 ms
69,856 KB
testcase_38 AC 53 ms
68,912 KB
testcase_39 AC 58 ms
75,976 KB
testcase_40 AC 85 ms
97,620 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 121 ms
111,196 KB
testcase_46 AC 121 ms
111,584 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 39 ms
52,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

if N==0:
  if K==0:
    print('1'*M)
  else:
    print(-1)
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