結果

問題 No.723 2つの数の和
ユーザー バカらっくバカらっく
提出日時 2018-08-04 23:02:33
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,808 bytes
コンパイル時間 932 ms
コンパイル使用メモリ 115,136 KB
実行使用メモリ 38,060 KB
最終ジャッジ日時 2024-09-19 17:58:27
合計ジャッジ時間 2,819 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
25,460 KB
testcase_01 AC 27 ms
25,232 KB
testcase_02 AC 27 ms
25,228 KB
testcase_03 AC 59 ms
34,072 KB
testcase_04 AC 68 ms
34,956 KB
testcase_05 AC 65 ms
36,988 KB
testcase_06 AC 67 ms
34,864 KB
testcase_07 AC 48 ms
28,684 KB
testcase_08 AC 49 ms
29,360 KB
testcase_09 AC 67 ms
35,204 KB
testcase_10 AC 47 ms
28,688 KB
testcase_11 AC 35 ms
28,568 KB
testcase_12 AC 51 ms
32,772 KB
testcase_13 AC 69 ms
35,700 KB
testcase_14 AC 41 ms
30,088 KB
testcase_15 AC 47 ms
28,940 KB
testcase_16 AC 55 ms
28,984 KB
testcase_17 AC 63 ms
34,768 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 26 ms
25,512 KB
testcase_21 AC 26 ms
25,356 KB
testcase_22 AC 28 ms
29,468 KB
testcase_23 AC 70 ms
38,060 KB
testcase_24 AC 41 ms
28,172 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 System.IO;
using System.Linq;
using System.Collections.Generic;
using System.Text;

public class Program
{

    public void Proc()
    {
        long[] inpt = Reader.ReadLine().Split(' ').Select(a => long.Parse(a)).ToArray();
        long total = inpt[1];

        long[] items = Reader.ReadLine().Split(' ').Select(a => long.Parse(a)).ToArray();

        Dictionary<long, int> dic = new Dictionary<long, int>();

        foreach(long item in items) {
            if(dic.ContainsKey(item)) {
                dic[item]++;
            } else {
                dic[item] = 1;
            }
        }

        long ans = 0;
        foreach(long key in dic.Keys) {
            long pairKey = total - key;
            if(pairKey<0) {
                continue;
            }
            if(!dic.ContainsKey(pairKey)) {
                continue;
            }
            ans += dic[key] * dic[pairKey];
        }
        Console.WriteLine(ans);

    }

    private int[] GetIntArray() {
        return Reader.ReadLine().Trim().Split(' ').Select(a => int.Parse(a)).ToArray();
    }


    public class Reader
    {
        static StringReader sr;
        public static bool IsDebug = false;
        public static string ReadLine()
        {
            if (IsDebug)
            {
                if (sr == null)
                {
                    sr = new StringReader(InputText.Trim());
                }
                return sr.ReadLine();
            }
            else
            {
                return Console.ReadLine();
            }
        }
        private static string InputText = @"



3 4
1 2 3









";
    }

    public static void Main(string[] args)
    {
#if DEBUG
        Reader.IsDebug = true;
#endif
        Program prg = new Program();
        prg.Proc();
    }
}
0