結果

問題 No.1981 [Cherry 4th Tune N] アルゴリズムが破滅する例
ユーザー ikomaikoma
提出日時 2022-06-17 22:56:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 232 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 63,168 KB
最終ジャッジ日時 2024-10-09 09:18:24
合計ジャッジ時間 6,151 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,864 KB
testcase_01 AC 39 ms
52,356 KB
testcase_02 AC 39 ms
52,280 KB
testcase_03 AC 41 ms
53,124 KB
testcase_04 AC 47 ms
60,968 KB
testcase_05 AC 39 ms
53,404 KB
testcase_06 AC 43 ms
60,484 KB
testcase_07 AC 38 ms
52,480 KB
testcase_08 AC 39 ms
52,124 KB
testcase_09 AC 36 ms
52,216 KB
testcase_10 AC 38 ms
53,120 KB
testcase_11 AC 39 ms
53,504 KB
testcase_12 AC 38 ms
52,880 KB
testcase_13 AC 37 ms
51,876 KB
testcase_14 AC 38 ms
52,564 KB
testcase_15 AC 46 ms
61,304 KB
testcase_16 AC 37 ms
52,772 KB
testcase_17 AC 36 ms
52,556 KB
testcase_18 AC 43 ms
59,048 KB
testcase_19 AC 41 ms
58,520 KB
testcase_20 AC 43 ms
59,528 KB
testcase_21 AC 38 ms
52,692 KB
testcase_22 AC 39 ms
52,624 KB
testcase_23 AC 36 ms
52,816 KB
testcase_24 AC 36 ms
51,952 KB
testcase_25 AC 37 ms
52,628 KB
testcase_26 AC 40 ms
53,592 KB
testcase_27 AC 36 ms
52,856 KB
testcase_28 AC 37 ms
53,240 KB
testcase_29 AC 35 ms
53,012 KB
testcase_30 AC 42 ms
59,448 KB
testcase_31 AC 38 ms
52,648 KB
testcase_32 AC 37 ms
52,576 KB
testcase_33 AC 45 ms
59,848 KB
testcase_34 AC 46 ms
62,316 KB
testcase_35 AC 39 ms
53,756 KB
testcase_36 AC 40 ms
54,480 KB
testcase_37 AC 39 ms
53,088 KB
testcase_38 AC 38 ms
53,532 KB
testcase_39 AC 38 ms
52,228 KB
testcase_40 AC 38 ms
52,248 KB
testcase_41 AC 38 ms
53,012 KB
testcase_42 AC 39 ms
52,308 KB
testcase_43 AC 37 ms
53,124 KB
testcase_44 AC 37 ms
53,484 KB
testcase_45 AC 38 ms
52,336 KB
testcase_46 AC 52 ms
63,168 KB
testcase_47 AC 46 ms
60,032 KB
testcase_48 AC 46 ms
59,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())

if K<N-N//2:
    print(-1)
    exit()

edge = []
K = N-K
for i in range(1,K*2,2):
    edge.append((i,i+1))
for i in range(1,N+1):
    edge.append((i,i))

print(len(edge))
for a,b in edge:
    print(a,b)
0