結果

問題 No.2247 01 ZigZag
ユーザー もちふわゆるゆるもちふわゆるゆる
提出日時 2023-03-17 21:48:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 417 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 70,592 KB
最終ジャッジ日時 2024-09-18 10:38:55
合計ジャッジ時間 3,449 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,340 KB
testcase_01 AC 33 ms
52,884 KB
testcase_02 AC 46 ms
68,284 KB
testcase_03 AC 42 ms
66,728 KB
testcase_04 AC 38 ms
63,664 KB
testcase_05 AC 37 ms
60,252 KB
testcase_06 AC 39 ms
63,208 KB
testcase_07 AC 38 ms
62,004 KB
testcase_08 AC 41 ms
65,424 KB
testcase_09 AC 43 ms
67,668 KB
testcase_10 AC 40 ms
66,108 KB
testcase_11 AC 42 ms
63,232 KB
testcase_12 AC 37 ms
61,000 KB
testcase_13 AC 39 ms
61,712 KB
testcase_14 AC 39 ms
62,520 KB
testcase_15 AC 36 ms
60,748 KB
testcase_16 AC 37 ms
61,896 KB
testcase_17 AC 45 ms
70,592 KB
testcase_18 AC 44 ms
67,684 KB
testcase_19 AC 44 ms
70,192 KB
testcase_20 AC 40 ms
64,708 KB
testcase_21 AC 39 ms
61,188 KB
testcase_22 AC 42 ms
64,296 KB
testcase_23 AC 40 ms
63,196 KB
testcase_24 AC 43 ms
67,720 KB
testcase_25 AC 41 ms
65,864 KB
testcase_26 AC 39 ms
63,712 KB
testcase_27 AC 39 ms
59,372 KB
testcase_28 AC 42 ms
67,960 KB
testcase_29 AC 43 ms
68,944 KB
testcase_30 AC 45 ms
68,432 KB
testcase_31 AC 41 ms
62,040 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 39 ms
61,032 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 44 ms
70,316 KB
testcase_41 RE -
testcase_42 WA -
testcase_43 AC 32 ms
52,536 KB
testcase_44 AC 32 ms
53,424 KB
testcase_45 AC 44 ms
69,616 KB
testcase_46 AC 45 ms
70,104 KB
testcase_47 WA -
testcase_48 RE -
testcase_49 AC 35 ms
52,404 KB
testcase_50 AC 34 ms
52,500 KB
testcase_51 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, math
input = lambda: sys.stdin.readline()[:-1]
def MI(): return map(int, input().split())
inf = 10**18

n,m,k = MI()
cnt = [0,0]
ans = []
for i in range(k+1):
    cnt[i%2] += 1
    ans.append(str(i%2))
# print(ans)
# print(cnt)
if cnt[0] > n or cnt[1] > m:
    print(-1); exit()

ans[0] += '0'*(n-cnt[0])
if (k+1)%2==0:
    ans[-1] += '1'*(m-cnt[1])
else:
    ans[-2] += '1'*(m-cnt[1])
print("".join(ans))
0