結果

問題 No.2247 01 ZigZag
ユーザー shobonvipshobonvip
提出日時 2023-03-17 22:37:21
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 763 bytes
コンパイル時間 123 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 76,416 KB
最終ジャッジ日時 2024-09-18 11:43:24
合計ジャッジ時間 3,672 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
51,840 KB
testcase_01 AC 35 ms
51,840 KB
testcase_02 AC 36 ms
51,840 KB
testcase_03 AC 55 ms
67,712 KB
testcase_04 AC 34 ms
52,224 KB
testcase_05 AC 47 ms
66,304 KB
testcase_06 AC 45 ms
64,768 KB
testcase_07 AC 35 ms
51,968 KB
testcase_08 AC 55 ms
69,888 KB
testcase_09 AC 53 ms
68,864 KB
testcase_10 AC 37 ms
51,968 KB
testcase_11 AC 50 ms
67,072 KB
testcase_12 AC 49 ms
66,688 KB
testcase_13 AC 47 ms
64,384 KB
testcase_14 AC 33 ms
52,352 KB
testcase_15 AC 46 ms
67,328 KB
testcase_16 AC 50 ms
69,888 KB
testcase_17 AC 52 ms
72,192 KB
testcase_18 AC 34 ms
51,840 KB
testcase_19 AC 33 ms
52,224 KB
testcase_20 AC 32 ms
51,456 KB
testcase_21 AC 42 ms
61,696 KB
testcase_22 AC 52 ms
71,552 KB
testcase_23 AC 44 ms
64,640 KB
testcase_24 AC 33 ms
51,840 KB
testcase_25 AC 56 ms
70,528 KB
testcase_26 AC 54 ms
68,608 KB
testcase_27 AC 50 ms
67,840 KB
testcase_28 AC 55 ms
70,784 KB
testcase_29 AC 52 ms
68,480 KB
testcase_30 AC 56 ms
72,832 KB
testcase_31 AC 33 ms
51,968 KB
testcase_32 AC 53 ms
72,832 KB
testcase_33 AC 49 ms
67,200 KB
testcase_34 AC 49 ms
66,944 KB
testcase_35 AC 47 ms
65,408 KB
testcase_36 AC 50 ms
67,200 KB
testcase_37 AC 44 ms
62,208 KB
testcase_38 AC 43 ms
61,824 KB
testcase_39 AC 43 ms
63,896 KB
testcase_40 AC 33 ms
51,840 KB
testcase_41 RE -
testcase_42 RE -
testcase_43 AC 36 ms
51,456 KB
testcase_44 AC 35 ms
51,968 KB
testcase_45 AC 56 ms
76,288 KB
testcase_46 AC 58 ms
76,416 KB
testcase_47 RE -
testcase_48 RE -
testcase_49 AC 33 ms
51,840 KB
testcase_50 AC 34 ms
51,328 KB
testcase_51 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,k = map(int,input().split())
# zero 先頭
zero = k // 2 + 1
one = (k + 1) // 2
if zero <= n and one <= m:
	v = [1] * (k + 1)
	if k % 2 == 1:
		v[0] = n - zero + 1
		v[-1] = m - one + 1
	else:
		v[0] = n - zero + 1
		v[-2] = m - one + 1
	ans = []
	for i in range(k+1):
		for j in range(v[i]):
			if i % 2 == 0:
				ans.append("0")
			else:
				ans.append("1")
	print("".join(ans))
	exit()

# one 先頭
zero = (k + 1) // 2
one = k // 2 + 1
if zero <= n and one <= m:
	v = [1] * (k + 1)
	if k % 2 == 1:
		v[1] = n - zero + 1
		v[-2] = m - one + 1
	else:
		v[1] = n - zero + 1
		v[-1] = m - one + 1
	ans = []
	for i in range(k+1):
		for j in range(v[i]):
			if i % 2 == 1:
				ans.append("0")
			else:
				ans.append("1")
	print("".join(ans))
	exit()

print(-1)
0