結果

問題 No.1389 Clumsy Calculation
ユーザー kakel-sankakel-san
提出日時 2024-07-22 23:27:09
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 192 ms / 2,000 ms
コード長 1,008 bytes
コンパイル時間 10,730 ms
コンパイル使用メモリ 166,624 KB
実行使用メモリ 209,592 KB
最終ジャッジ日時 2024-07-22 23:27:26
合計ジャッジ時間 15,418 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
30,080 KB
testcase_01 AC 57 ms
29,952 KB
testcase_02 AC 57 ms
30,336 KB
testcase_03 AC 60 ms
30,828 KB
testcase_04 AC 59 ms
30,848 KB
testcase_05 AC 60 ms
30,964 KB
testcase_06 AC 59 ms
30,464 KB
testcase_07 AC 67 ms
30,464 KB
testcase_08 AC 58 ms
30,196 KB
testcase_09 AC 192 ms
62,444 KB
testcase_10 AC 84 ms
43,264 KB
testcase_11 AC 59 ms
30,296 KB
testcase_12 AC 63 ms
30,336 KB
testcase_13 AC 60 ms
30,448 KB
testcase_14 AC 124 ms
54,272 KB
testcase_15 AC 94 ms
54,060 KB
testcase_16 AC 95 ms
54,144 KB
testcase_17 AC 96 ms
55,040 KB
testcase_18 AC 98 ms
54,964 KB
testcase_19 AC 98 ms
54,968 KB
testcase_20 AC 99 ms
54,844 KB
testcase_21 AC 96 ms
55,168 KB
testcase_22 AC 97 ms
55,424 KB
testcase_23 AC 116 ms
55,036 KB
testcase_24 AC 96 ms
55,040 KB
testcase_25 AC 97 ms
55,108 KB
testcase_26 AC 95 ms
53,376 KB
testcase_27 AC 95 ms
54,144 KB
testcase_28 AC 96 ms
209,592 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (95 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

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 int[][] NArr(long n) => Enumerable.Repeat(0, (int)n).Select(_ => NList).ToArray();
    static int[] LList(long n) => Enumerable.Repeat(0, (int)n).Select(_ => int.Parse(ReadLine())).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (n, x) = (c[0], c[1]);
        var s = NList;
        var a = new int[n];
        var sum = 0L;
        for (var i = 0; i < n; ++i)
        {
            a[i] = x - s[i];
            sum += a[i];
        }
        for (var i = 0; i < n; ++i) if (s[i] % 2 == 0)
        {
            if (sum + s[i] / 2 == x)
            {
                WriteLine(s[i] / 2);
                return;
            }
        }
    }
}
0