結果

問題 No.2247 01 ZigZag
ユーザー shakayamishakayami
提出日時 2023-03-17 21:31:23
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 462 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 77,952 KB
最終ジャッジ日時 2024-09-18 10:17:48
合計ジャッジ時間 4,575 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,840 KB
testcase_01 AC 38 ms
51,584 KB
testcase_02 AC 43 ms
58,368 KB
testcase_03 AC 72 ms
77,440 KB
testcase_04 AC 42 ms
57,856 KB
testcase_05 AC 54 ms
63,488 KB
testcase_06 AC 58 ms
69,248 KB
testcase_07 AC 46 ms
57,984 KB
testcase_08 AC 60 ms
73,088 KB
testcase_09 AC 60 ms
76,032 KB
testcase_10 AC 44 ms
58,880 KB
testcase_11 AC 57 ms
68,608 KB
testcase_12 AC 57 ms
65,408 KB
testcase_13 AC 56 ms
66,688 KB
testcase_14 AC 42 ms
57,984 KB
testcase_15 AC 54 ms
63,744 KB
testcase_16 AC 56 ms
66,816 KB
testcase_17 AC 69 ms
77,696 KB
testcase_18 AC 44 ms
58,752 KB
testcase_19 AC 44 ms
58,496 KB
testcase_20 AC 45 ms
57,984 KB
testcase_21 AC 55 ms
65,280 KB
testcase_22 AC 61 ms
72,320 KB
testcase_23 AC 56 ms
68,992 KB
testcase_24 AC 42 ms
58,240 KB
testcase_25 AC 60 ms
73,472 KB
testcase_26 AC 57 ms
69,120 KB
testcase_27 AC 50 ms
61,824 KB
testcase_28 AC 66 ms
77,440 KB
testcase_29 AC 66 ms
77,568 KB
testcase_30 AC 66 ms
77,908 KB
testcase_31 AC 45 ms
57,728 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 58 ms
66,432 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 44 ms
58,368 KB
testcase_41 AC 39 ms
52,096 KB
testcase_42 WA -
testcase_43 AC 39 ms
51,584 KB
testcase_44 AC 39 ms
51,584 KB
testcase_45 AC 69 ms
77,440 KB
testcase_46 AC 72 ms
77,952 KB
testcase_47 WA -
testcase_48 AC 39 ms
51,456 KB
testcase_49 AC 39 ms
51,968 KB
testcase_50 AC 38 ms
51,584 KB
testcase_51 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,K=map(int,input().split())
'''
K+1個のブロック
a_0,...,a_K
a_i>=1

a_{2i}個の0
a_{2i+1}個の1
辞書順最小にするためには
a_0を極力大きく
a_2,a_4,...,a_{2i}を1
'''
A=[0 for i in range(K+1)]
for i in range(0,K+1,2):
    A[i]+=1
    N-=1
if N<0:
    print(-1)
    exit()
A[0]+=N
for i in range(1,K+1,2):
    A[i]+=1
    M-=1
if M<0:
    print(-1)
    exit()
A[K-(K+1)%2]+=M
for i in range(K+1):
    print(str(i%2)*A[i],end="")
print()
0