結果

問題 No.1376 Simple LPS Problem
ユーザー KudeKude
提出日時 2021-02-05 23:21:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 571 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 80,336 KB
最終ジャッジ日時 2024-07-02 14:32:44
合計ジャッジ時間 4,903 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,628 KB
testcase_01 AC 37 ms
52,792 KB
testcase_02 AC 37 ms
53,480 KB
testcase_03 WA -
testcase_04 AC 33 ms
52,696 KB
testcase_05 AC 32 ms
52,084 KB
testcase_06 AC 37 ms
52,064 KB
testcase_07 AC 32 ms
52,836 KB
testcase_08 AC 35 ms
53,360 KB
testcase_09 AC 35 ms
52,616 KB
testcase_10 AC 36 ms
52,952 KB
testcase_11 AC 33 ms
51,940 KB
testcase_12 AC 34 ms
52,740 KB
testcase_13 AC 35 ms
53,548 KB
testcase_14 AC 34 ms
52,388 KB
testcase_15 AC 33 ms
52,292 KB
testcase_16 AC 35 ms
53,252 KB
testcase_17 AC 33 ms
53,280 KB
testcase_18 AC 33 ms
52,756 KB
testcase_19 AC 34 ms
52,116 KB
testcase_20 AC 37 ms
53,432 KB
testcase_21 AC 35 ms
52,344 KB
testcase_22 AC 35 ms
52,276 KB
testcase_23 AC 33 ms
53,376 KB
testcase_24 AC 33 ms
52,748 KB
testcase_25 AC 33 ms
53,016 KB
testcase_26 AC 32 ms
52,592 KB
testcase_27 AC 33 ms
52,916 KB
testcase_28 AC 33 ms
53,112 KB
testcase_29 AC 34 ms
53,372 KB
testcase_30 AC 35 ms
52,332 KB
testcase_31 AC 36 ms
52,288 KB
testcase_32 AC 36 ms
52,956 KB
testcase_33 AC 36 ms
52,404 KB
testcase_34 AC 35 ms
52,088 KB
testcase_35 AC 36 ms
53,872 KB
testcase_36 AC 37 ms
53,384 KB
testcase_37 AC 33 ms
52,564 KB
testcase_38 AC 33 ms
53,004 KB
testcase_39 AC 33 ms
52,572 KB
testcase_40 AC 35 ms
53,836 KB
testcase_41 AC 36 ms
53,136 KB
testcase_42 AC 77 ms
80,336 KB
testcase_43 AC 34 ms
52,628 KB
testcase_44 AC 32 ms
51,960 KB
testcase_45 AC 64 ms
73,320 KB
testcase_46 AC 72 ms
78,340 KB
testcase_47 AC 68 ms
77,080 KB
testcase_48 AC 63 ms
74,776 KB
testcase_49 AC 64 ms
72,436 KB
testcase_50 AC 66 ms
74,416 KB
testcase_51 AC 63 ms
72,400 KB
testcase_52 AC 69 ms
77,628 KB
testcase_53 AC 71 ms
79,696 KB
testcase_54 AC 71 ms
78,280 KB
testcase_55 AC 34 ms
52,340 KB
testcase_56 AC 36 ms
53,504 KB
testcase_57 AC 37 ms
52,580 KB
testcase_58 AC 34 ms
52,628 KB
testcase_59 AC 32 ms
53,416 KB
testcase_60 AC 33 ms
53,784 KB
testcase_61 AC 32 ms
53,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())

if k == 1:
    if n > 1:
        print(-1)
    else:
        print(0)
elif k == 2:
    if n > 4:
        print(-1)
    else:
        print('0011'[:n])
elif k == 3:
    if n > 8:
        print(-1)
    else:
        print('11101000'[:n])
else:
    d = [k]
    n -= k
    i = 0
    t = [1, 1, 2, 2]
    while n:
        v = min(n, t[i])
        d.append(v)
        n -= v
        i = (i + 1) & 3
    for i, c in enumerate(d):
        if i % 2:
            print('1' * c, end='')
        else:
            print('0' * c, end='')
    print()
0