結果

問題 No.2247 01 ZigZag
ユーザー flygonflygon
提出日時 2023-03-17 21:48:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 583 bytes
コンパイル時間 498 ms
コンパイル使用メモリ 82,020 KB
実行使用メモリ 258,560 KB
最終ジャッジ日時 2024-09-18 10:37:42
合計ジャッジ時間 10,858 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,992 KB
testcase_01 AC 37 ms
52,964 KB
testcase_02 AC 37 ms
53,376 KB
testcase_03 AC 310 ms
87,968 KB
testcase_04 AC 32 ms
52,724 KB
testcase_05 AC 53 ms
75,336 KB
testcase_06 AC 134 ms
78,320 KB
testcase_07 AC 35 ms
51,816 KB
testcase_08 AC 211 ms
82,036 KB
testcase_09 AC 421 ms
97,624 KB
testcase_10 AC 33 ms
52,476 KB
testcase_11 AC 124 ms
78,176 KB
testcase_12 AC 130 ms
80,124 KB
testcase_13 AC 103 ms
77,404 KB
testcase_14 AC 37 ms
52,500 KB
testcase_15 AC 93 ms
77,716 KB
testcase_16 AC 218 ms
90,564 KB
testcase_17 AC 756 ms
128,104 KB
testcase_18 AC 37 ms
52,084 KB
testcase_19 AC 35 ms
52,532 KB
testcase_20 AC 37 ms
52,324 KB
testcase_21 AC 73 ms
75,720 KB
testcase_22 AC 327 ms
89,436 KB
testcase_23 AC 107 ms
77,056 KB
testcase_24 AC 34 ms
52,688 KB
testcase_25 AC 570 ms
110,828 KB
testcase_26 AC 282 ms
90,860 KB
testcase_27 AC 45 ms
68,072 KB
testcase_28 AC 334 ms
89,720 KB
testcase_29 AC 476 ms
99,380 KB
testcase_30 AC 471 ms
100,428 KB
testcase_31 AC 35 ms
52,204 KB
testcase_32 AC 284 ms
86,564 KB
testcase_33 AC 123 ms
77,700 KB
testcase_34 AC 76 ms
76,040 KB
testcase_35 AC 52 ms
75,672 KB
testcase_36 AC 195 ms
80,384 KB
testcase_37 AC 61 ms
75,816 KB
testcase_38 AC 60 ms
76,072 KB
testcase_39 AC 114 ms
77,936 KB
testcase_40 AC 34 ms
52,068 KB
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 32 ms
52,324 KB
testcase_44 AC 32 ms
52,764 KB
testcase_45 AC 1,303 ms
258,524 KB
testcase_46 AC 1,252 ms
258,560 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 33 ms
51,712 KB
testcase_50 AC 33 ms
51,840 KB
testcase_51 AC 33 ms
51,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,k = map(int,input().split())
num = min(n,m)*2 - (n==m) 
if k == 0:
  print(-1)
  exit()
if num < k:
  print(-1)
  exit()
elif num == k:
  if n >= m:
    l = [0,1] *( (k+1)//2 )
  else:
    l = [1,0] * ((k+1)//2)
  if k % 2 == 0:
    l.append(l[0])
else:
  l = [0,1] *( (k+1)//2 )
  if k % 2 == 0:
    l.append(l[0])

cnt = [1]*len(l)
n -= l.count(0)
m -= l.count(1)
for i in range(len(l)):
  if l[i] == 0:
    cnt[i] += n
    break
for i in range(len(l))[::-1]:
  if l[i] == 1:
    cnt[i] += m
    break
  
ans = ""
for i in range(len(l)):
  ans += str(l[i]) * cnt[i]

print(ans)
0