結果

問題 No.2247 01 ZigZag
ユーザー katonyonkokatonyonko
提出日時 2023-03-17 21:57:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 336 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 59,764 KB
最終ジャッジ日時 2024-09-18 10:50:25
合計ジャッジ時間 3,712 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,480 KB
testcase_01 AC 39 ms
53,068 KB
testcase_02 AC 43 ms
58,304 KB
testcase_03 WA -
testcase_04 AC 40 ms
58,952 KB
testcase_05 AC 41 ms
59,652 KB
testcase_06 WA -
testcase_07 AC 41 ms
58,108 KB
testcase_08 AC 42 ms
58,628 KB
testcase_09 AC 42 ms
59,508 KB
testcase_10 AC 42 ms
58,616 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 41 ms
57,536 KB
testcase_15 AC 42 ms
59,548 KB
testcase_16 WA -
testcase_17 AC 42 ms
59,500 KB
testcase_18 AC 41 ms
59,100 KB
testcase_19 AC 42 ms
58,500 KB
testcase_20 AC 42 ms
58,156 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 41 ms
58,992 KB
testcase_25 AC 41 ms
59,112 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 42 ms
58,580 KB
testcase_32 AC 42 ms
58,440 KB
testcase_33 AC 42 ms
58,640 KB
testcase_34 AC 42 ms
59,572 KB
testcase_35 AC 43 ms
58,616 KB
testcase_36 AC 42 ms
58,968 KB
testcase_37 AC 42 ms
59,252 KB
testcase_38 AC 41 ms
59,764 KB
testcase_39 AC 42 ms
58,896 KB
testcase_40 AC 42 ms
58,576 KB
testcase_41 AC 37 ms
52,960 KB
testcase_42 AC 38 ms
52,908 KB
testcase_43 AC 37 ms
52,960 KB
testcase_44 AC 39 ms
53,240 KB
testcase_45 WA -
testcase_46 AC 43 ms
58,940 KB
testcase_47 AC 39 ms
52,520 KB
testcase_48 AC 38 ms
52,300 KB
testcase_49 AC 38 ms
52,580 KB
testcase_50 AC 37 ms
52,176 KB
testcase_51 AC 38 ms
52,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,K=map(int,input().split())
def cnt(a,N,M):
  if N==0 or M==0: return 0
  elif a==0: return 1
  else: return 2*a-1+(1 if M>a else 0)+(1 if N>a else 0)
ans=-1
for i in range(min(N,M)+1):
  if cnt(i,N,M)==K: ans=i; break
if K==2 and N>1: print('0'*(N-1)+'1'*M+'0')
elif ans==-1: print(ans)
else: print('0'*(N-ans)+'10'*ans+'1'*(M-ans))
0