結果

問題 No.2247 01 ZigZag
ユーザー vwxyzvwxyz
提出日時 2024-08-15 10:10:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 388 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 20,856 KB
最終ジャッジ日時 2024-08-15 10:10:17
合計ジャッジ時間 7,117 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,752 KB
testcase_01 AC 34 ms
10,624 KB
testcase_02 AC 55 ms
12,160 KB
testcase_03 AC 145 ms
15,580 KB
testcase_04 AC 42 ms
11,392 KB
testcase_05 AC 72 ms
14,192 KB
testcase_06 AC 108 ms
14,012 KB
testcase_07 AC 38 ms
11,392 KB
testcase_08 AC 151 ms
16,996 KB
testcase_09 AC 134 ms
16,052 KB
testcase_10 AC 48 ms
11,776 KB
testcase_11 AC 90 ms
14,568 KB
testcase_12 AC 75 ms
14,604 KB
testcase_13 AC 77 ms
13,408 KB
testcase_14 AC 36 ms
11,392 KB
testcase_15 AC 82 ms
14,720 KB
testcase_16 AC 102 ms
16,544 KB
testcase_17 AC 184 ms
18,220 KB
testcase_18 AC 46 ms
11,904 KB
testcase_19 AC 51 ms
12,288 KB
testcase_20 AC 45 ms
11,520 KB
testcase_21 AC 54 ms
12,672 KB
testcase_22 AC 143 ms
17,648 KB
testcase_23 AC 84 ms
13,576 KB
testcase_24 AC 48 ms
11,904 KB
testcase_25 AC 142 ms
17,376 KB
testcase_26 AC 106 ms
15,844 KB
testcase_27 AC 75 ms
14,848 KB
testcase_28 AC 164 ms
18,120 KB
testcase_29 AC 163 ms
17,172 KB
testcase_30 AC 169 ms
19,188 KB
testcase_31 AC 34 ms
11,136 KB
testcase_32 AC 144 ms
16,428 KB
testcase_33 AC 87 ms
14,572 KB
testcase_34 AC 83 ms
14,276 KB
testcase_35 AC 62 ms
13,400 KB
testcase_36 AC 93 ms
14,536 KB
testcase_37 AC 48 ms
12,160 KB
testcase_38 AC 51 ms
12,032 KB
testcase_39 AC 73 ms
13,160 KB
testcase_40 AC 53 ms
12,288 KB
testcase_41 AC 73 ms
14,388 KB
testcase_42 AC 77 ms
14,244 KB
testcase_43 AC 29 ms
10,752 KB
testcase_44 AC 27 ms
10,752 KB
testcase_45 AC 214 ms
20,708 KB
testcase_46 AC 214 ms
20,856 KB
testcase_47 AC 27 ms
10,752 KB
testcase_48 AC 28 ms
10,752 KB
testcase_49 AC 28 ms
10,752 KB
testcase_50 AC 27 ms
10,752 KB
testcase_51 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,K=map(int,input().split())
ans_lst=[2]
for a in range(2):
    A=[(a+k)%2 for k in range(K+1)]
    cnt0=A.count(0)
    cnt1=A.count(1)
    if cnt0<=N and cnt1<=M:
        C=[[1]*(cnt0-1)+[N-(cnt0-1)],[M-(cnt1-1)]+[1]*(cnt1-1)]
        B=[]
        for a in A:
            B+=[a]*C[a].pop()
        ans_lst=min(ans_lst,B)
if ans_lst[0]==2:
    print(-1)
else:
    print(*ans_lst,sep="")
0