結果

問題 No.2247 01 ZigZag
ユーザー katonyonkokatonyonko
提出日時 2023-03-17 21:39:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 236 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 60,728 KB
最終ジャッジ日時 2024-09-18 10:28:04
合計ジャッジ時間 3,869 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,328 KB
testcase_01 AC 36 ms
52,068 KB
testcase_02 AC 42 ms
58,800 KB
testcase_03 WA -
testcase_04 AC 42 ms
58,940 KB
testcase_05 AC 42 ms
59,232 KB
testcase_06 WA -
testcase_07 AC 42 ms
59,052 KB
testcase_08 AC 42 ms
60,032 KB
testcase_09 AC 38 ms
53,064 KB
testcase_10 AC 42 ms
59,076 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 41 ms
58,900 KB
testcase_15 AC 41 ms
58,416 KB
testcase_16 WA -
testcase_17 AC 42 ms
59,288 KB
testcase_18 AC 41 ms
58,960 KB
testcase_19 AC 41 ms
58,732 KB
testcase_20 AC 41 ms
58,976 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 41 ms
58,088 KB
testcase_25 AC 42 ms
59,732 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 43 ms
58,488 KB
testcase_32 AC 38 ms
52,852 KB
testcase_33 AC 38 ms
52,632 KB
testcase_34 AC 37 ms
53,004 KB
testcase_35 AC 37 ms
52,932 KB
testcase_36 AC 38 ms
53,480 KB
testcase_37 AC 38 ms
52,232 KB
testcase_38 AC 37 ms
53,456 KB
testcase_39 AC 37 ms
53,212 KB
testcase_40 AC 42 ms
59,272 KB
testcase_41 AC 37 ms
52,136 KB
testcase_42 AC 37 ms
52,620 KB
testcase_43 AC 38 ms
53,308 KB
testcase_44 AC 38 ms
53,396 KB
testcase_45 WA -
testcase_46 AC 42 ms
60,420 KB
testcase_47 AC 39 ms
51,880 KB
testcase_48 AC 37 ms
52,656 KB
testcase_49 AC 39 ms
52,264 KB
testcase_50 AC 37 ms
53,216 KB
testcase_51 AC 38 ms
52,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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