結果

問題 No.2247 01 ZigZag
ユーザー vwxyzvwxyz
提出日時 2024-08-15 10:11:21
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 243 ms / 2,000 ms
コード長 416 bytes
コンパイル時間 422 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,732 KB
最終ジャッジ日時 2024-08-15 10:11:28
合計ジャッジ時間 6,566 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 55 ms
12,160 KB
testcase_03 AC 146 ms
15,696 KB
testcase_04 AC 42 ms
11,264 KB
testcase_05 AC 71 ms
14,200 KB
testcase_06 AC 92 ms
14,016 KB
testcase_07 AC 38 ms
11,264 KB
testcase_08 AC 152 ms
17,000 KB
testcase_09 AC 152 ms
16,056 KB
testcase_10 AC 49 ms
11,648 KB
testcase_11 AC 102 ms
14,572 KB
testcase_12 AC 86 ms
14,484 KB
testcase_13 AC 77 ms
13,288 KB
testcase_14 AC 40 ms
11,264 KB
testcase_15 AC 80 ms
14,600 KB
testcase_16 AC 114 ms
16,556 KB
testcase_17 AC 202 ms
18,228 KB
testcase_18 AC 51 ms
11,904 KB
testcase_19 AC 56 ms
12,160 KB
testcase_20 AC 43 ms
11,520 KB
testcase_21 AC 60 ms
12,672 KB
testcase_22 AC 154 ms
17,652 KB
testcase_23 AC 88 ms
13,452 KB
testcase_24 AC 51 ms
11,904 KB
testcase_25 AC 154 ms
17,516 KB
testcase_26 AC 118 ms
15,616 KB
testcase_27 AC 83 ms
14,732 KB
testcase_28 AC 182 ms
18,000 KB
testcase_29 AC 172 ms
17,052 KB
testcase_30 AC 187 ms
19,192 KB
testcase_31 AC 38 ms
11,264 KB
testcase_32 AC 146 ms
16,432 KB
testcase_33 AC 99 ms
14,324 KB
testcase_34 AC 91 ms
14,412 KB
testcase_35 AC 71 ms
13,280 KB
testcase_36 AC 104 ms
14,308 KB
testcase_37 AC 54 ms
12,160 KB
testcase_38 AC 54 ms
12,032 KB
testcase_39 AC 77 ms
13,168 KB
testcase_40 AC 58 ms
12,416 KB
testcase_41 AC 81 ms
14,400 KB
testcase_42 AC 81 ms
14,272 KB
testcase_43 AC 30 ms
10,624 KB
testcase_44 AC 29 ms
10,624 KB
testcase_45 AC 243 ms
20,716 KB
testcase_46 AC 236 ms
20,732 KB
testcase_47 AC 29 ms
10,624 KB
testcase_48 AC 29 ms
10,624 KB
testcase_49 AC 31 ms
10,752 KB
testcase_50 AC 30 ms
10,624 KB
testcase_51 AC 30 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

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()
        if len(B)==N+M:
            ans_lst=min(ans_lst,B)
if ans_lst[0]==2:
    print(-1)
else:
    print(*ans_lst,sep="")
0