結果

問題 No.723 2つの数の和
ユーザー 抹茶アイス抹茶アイス
提出日時 2023-08-01 17:09:03
言語 C#
(.NET 8.0.203)
結果
WA  
実行時間 -
コード長 1,290 bytes
コンパイル時間 13,617 ms
コンパイル使用メモリ 167,760 KB
実行使用メモリ 188,624 KB
最終ジャッジ日時 2024-10-11 08:28:39
合計ジャッジ時間 20,967 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
29,824 KB
testcase_01 AC 56 ms
29,952 KB
testcase_02 AC 57 ms
30,208 KB
testcase_03 AC 652 ms
38,528 KB
testcase_04 AC 406 ms
40,960 KB
testcase_05 AC 186 ms
39,276 KB
testcase_06 AC 1,051 ms
39,680 KB
testcase_07 AC 231 ms
34,944 KB
testcase_08 AC 307 ms
35,328 KB
testcase_09 AC 801 ms
41,344 KB
testcase_10 AC 168 ms
34,816 KB
testcase_11 AC 80 ms
32,128 KB
testcase_12 AC 330 ms
36,608 KB
testcase_13 AC 97 ms
41,472 KB
testcase_14 AC 78 ms
33,792 KB
testcase_15 AC 81 ms
34,944 KB
testcase_16 AC 89 ms
37,504 KB
testcase_17 AC 92 ms
38,912 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 57 ms
29,676 KB
testcase_21 AC 58 ms
29,952 KB
testcase_22 AC 57 ms
29,952 KB
testcase_23 AC 1,029 ms
41,472 KB
testcase_24 AC 80 ms
188,624 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (115 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 System.Collections.Generic;
using System.Linq;

namespace yukicoder
{
    public class Program
    {
        public static void Main()
        {
            var line = Console.ReadLine().Split(' ');
            var n = int.Parse(line[0]);
            var x = int.Parse(line[1]);
            var a = Console.ReadLine().Split(' ').Select(value => int.Parse(value)).ToArray();
            var sum = 0;
            var T = x % 2 == 0;
            Array.Sort(a);
            var t = 0;
            for(var i = 0; i < n; i++)
            {
                if ( T && a[i] == x / 2)
                {
                    t++;
                }
                else
                {
                    if (a[i] > x / 2)
                    {
                        break;
                    }
                    for (var j = n - 1; j >= 0; j--)
                    {
                        if (a[i] + a[j] == x)
                        {
                            sum += 2;
                        }
                        else if (a[i] + a[j] < x)
                        {
                            break;
                        }
                    }
                }
            }
            sum += t * t;
            Console.WriteLine(sum);
        }
    }
}
0