結果

問題 No.2757 Pin Game
ユーザー Maeda
提出日時 2025-04-10 16:52:55
言語 C#
(.NET 8.0.404)
結果
WA  
実行時間 -
コード長 332 bytes
コンパイル時間 8,908 ms
コンパイル使用メモリ 172,560 KB
実行使用メモリ 204,224 KB
最終ジャッジ日時 2025-04-10 16:53:07
合計ジャッジ時間 9,273 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 2 WA * 8
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (109 ミリ秒)。
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

    class Program
    {
        static void Main(string[] args)
        {
            int[] nk = Array.ConvertAll(Console.ReadLine().Split(' '), num => int.Parse(num));
            int[] pinList = Array.ConvertAll(Console.ReadLine().Split(' '), num => int.Parse(num));
            Console.WriteLine(nk[0] / 2 + 1);
        }
    }  
0