結果

問題 No.1981 [Cherry 4th Tune N] アルゴリズムが破滅する例
ユーザー kakel-sankakel-san
提出日時 2022-06-17 22:48:01
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 33 ms / 2,000 ms
コード長 843 bytes
コンパイル時間 989 ms
コンパイル使用メモリ 115,432 KB
実行使用メモリ 29,060 KB
最終ジャッジ日時 2024-10-09 09:07:25
合計ジャッジ時間 6,303 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
25,264 KB
testcase_01 AC 29 ms
24,916 KB
testcase_02 AC 32 ms
25,380 KB
testcase_03 AC 32 ms
27,432 KB
testcase_04 AC 33 ms
27,216 KB
testcase_05 AC 32 ms
27,424 KB
testcase_06 AC 32 ms
24,880 KB
testcase_07 AC 29 ms
25,012 KB
testcase_08 AC 28 ms
25,124 KB
testcase_09 AC 29 ms
24,844 KB
testcase_10 AC 33 ms
27,556 KB
testcase_11 AC 32 ms
25,636 KB
testcase_12 AC 28 ms
25,004 KB
testcase_13 AC 32 ms
25,256 KB
testcase_14 AC 32 ms
25,380 KB
testcase_15 AC 33 ms
27,316 KB
testcase_16 AC 29 ms
24,884 KB
testcase_17 AC 30 ms
22,964 KB
testcase_18 AC 32 ms
25,128 KB
testcase_19 AC 33 ms
25,252 KB
testcase_20 AC 33 ms
25,256 KB
testcase_21 AC 31 ms
25,128 KB
testcase_22 AC 28 ms
22,712 KB
testcase_23 AC 28 ms
25,004 KB
testcase_24 AC 28 ms
27,020 KB
testcase_25 AC 27 ms
22,960 KB
testcase_26 AC 32 ms
25,388 KB
testcase_27 AC 28 ms
24,984 KB
testcase_28 AC 29 ms
25,132 KB
testcase_29 AC 32 ms
25,640 KB
testcase_30 AC 33 ms
25,256 KB
testcase_31 AC 29 ms
24,872 KB
testcase_32 AC 32 ms
25,388 KB
testcase_33 AC 33 ms
25,520 KB
testcase_34 AC 32 ms
27,216 KB
testcase_35 AC 33 ms
23,300 KB
testcase_36 AC 32 ms
27,172 KB
testcase_37 AC 32 ms
25,260 KB
testcase_38 AC 28 ms
25,128 KB
testcase_39 AC 28 ms
24,876 KB
testcase_40 AC 29 ms
27,028 KB
testcase_41 AC 28 ms
25,132 KB
testcase_42 AC 28 ms
24,988 KB
testcase_43 AC 28 ms
29,060 KB
testcase_44 AC 33 ms
27,416 KB
testcase_45 AC 30 ms
27,016 KB
testcase_46 AC 32 ms
25,520 KB
testcase_47 AC 32 ms
25,364 KB
testcase_48 AC 32 ms
25,240 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static void Main()
    {
        var c = NList;
        var (n, k) = (c[0], c[1]);
        if (k * 2 < n)
        {
            WriteLine(-1);
            return;
        }
        var map = new List<int[]>();
        for (var i = 0; i < k; ++i) map.Add(new int[] { i + 1, i + 1 });
        for (var i = 0; i < k; ++i) if (i + k + 1 <= n)
        {
            map.Add(new int[] { i + 1, i + k + 1 });
            map.Add(new int[] { i + k + 1, i + 1 });
        }
        WriteLine(map.Count);
        WriteLine(string.Join("\n", map.Select(m => string.Join(" ", m))));
    }
}
0