結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,828 KB
testcase_01 AC 40 ms
52,692 KB
testcase_02 AC 40 ms
57,788 KB
testcase_03 WA -
testcase_04 AC 38 ms
57,672 KB
testcase_05 AC 38 ms
58,624 KB
testcase_06 WA -
testcase_07 AC 42 ms
57,936 KB
testcase_08 AC 42 ms
58,128 KB
testcase_09 AC 42 ms
58,480 KB
testcase_10 AC 41 ms
57,908 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 41 ms
58,364 KB
testcase_15 AC 41 ms
59,148 KB
testcase_16 WA -
testcase_17 AC 41 ms
58,248 KB
testcase_18 AC 40 ms
58,908 KB
testcase_19 AC 40 ms
58,984 KB
testcase_20 AC 38 ms
57,932 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 39 ms
58,192 KB
testcase_25 AC 44 ms
57,984 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 40 ms
58,868 KB
testcase_32 AC 38 ms
58,560 KB
testcase_33 AC 41 ms
59,664 KB
testcase_34 AC 40 ms
58,312 KB
testcase_35 AC 41 ms
58,464 KB
testcase_36 AC 40 ms
58,856 KB
testcase_37 AC 40 ms
59,288 KB
testcase_38 AC 38 ms
58,632 KB
testcase_39 AC 38 ms
58,608 KB
testcase_40 AC 39 ms
58,052 KB
testcase_41 AC 36 ms
53,056 KB
testcase_42 AC 36 ms
54,100 KB
testcase_43 AC 36 ms
53,172 KB
testcase_44 AC 36 ms
52,304 KB
testcase_45 WA -
testcase_46 AC 41 ms
58,548 KB
testcase_47 AC 36 ms
52,144 KB
testcase_48 AC 37 ms
52,680 KB
testcase_49 AC 36 ms
52,716 KB
testcase_50 AC 33 ms
52,808 KB
testcase_51 AC 33 ms
52,620 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 ans==-1: print(ans)
else: print('0'*(N-ans)+'10'*ans+'1'*(M-ans))
0