結果

問題 No.1376 Simple LPS Problem
ユーザー tktk_snsntktk_snsn
提出日時 2021-02-05 22:49:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 119 bytes
コンパイル時間 325 ms
コンパイル使用メモリ 10,624 KB
実行使用メモリ 8,356 KB
最終ジャッジ日時 2023-09-15 09:40:40
合計ジャッジ時間 7,310 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 15 ms
7,772 KB
testcase_02 AC 16 ms
7,800 KB
testcase_03 WA -
testcase_04 AC 16 ms
7,808 KB
testcase_05 AC 15 ms
7,740 KB
testcase_06 WA -
testcase_07 AC 16 ms
7,776 KB
testcase_08 AC 15 ms
7,752 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 16 ms
7,760 KB
testcase_12 AC 15 ms
7,760 KB
testcase_13 AC 16 ms
7,816 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 16 ms
7,912 KB
testcase_17 AC 15 ms
7,744 KB
testcase_18 AC 15 ms
7,744 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 16 ms
7,828 KB
testcase_23 AC 16 ms
7,744 KB
testcase_24 AC 15 ms
7,764 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 16 ms
7,764 KB
testcase_28 AC 15 ms
7,864 KB
testcase_29 AC 16 ms
7,812 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 AC 16 ms
7,812 KB
testcase_34 AC 15 ms
7,836 KB
testcase_35 AC 16 ms
7,848 KB
testcase_36 AC 15 ms
7,836 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 16 ms
7,868 KB
testcase_41 AC 15 ms
7,756 KB
testcase_42 WA -
testcase_43 AC 15 ms
8,356 KB
testcase_44 AC 15 ms
7,776 KB
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 AC 16 ms
7,772 KB
testcase_56 AC 16 ms
7,820 KB
testcase_57 AC 16 ms
7,772 KB
testcase_58 AC 16 ms
7,780 KB
testcase_59 AC 17 ms
8,276 KB
testcase_60 AC 16 ms
7,824 KB
testcase_61 AC 16 ms
7,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
if 2 * K >= N:
    print("1" * K, sep="")
    print("0" * (N - K))
else:
    print(-1)
0