結果

問題 No.723 2つの数の和
ユーザー バカらっくバカらっく
提出日時 2018-08-04 22:59:57
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,703 bytes
コンパイル時間 1,140 ms
コンパイル使用メモリ 107,904 KB
実行使用メモリ 31,616 KB
最終ジャッジ日時 2024-09-19 17:58:24
合計ジャッジ時間 3,274 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
19,328 KB
testcase_01 AC 31 ms
19,072 KB
testcase_02 AC 31 ms
19,328 KB
testcase_03 AC 65 ms
27,008 KB
testcase_04 AC 75 ms
28,416 KB
testcase_05 AC 71 ms
28,160 KB
testcase_06 AC 73 ms
28,416 KB
testcase_07 AC 52 ms
23,552 KB
testcase_08 AC 55 ms
23,808 KB
testcase_09 AC 74 ms
28,800 KB
testcase_10 AC 53 ms
23,040 KB
testcase_11 AC 39 ms
20,736 KB
testcase_12 AC 57 ms
25,088 KB
testcase_13 AC 76 ms
29,184 KB
testcase_14 AC 45 ms
22,144 KB
testcase_15 AC 53 ms
23,424 KB
testcase_16 AC 62 ms
25,856 KB
testcase_17 AC 70 ms
28,160 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 30 ms
19,200 KB
testcase_21 AC 30 ms
19,328 KB
testcase_22 AC 31 ms
18,944 KB
testcase_23 AC 77 ms
31,616 KB
testcase_24 AC 48 ms
22,016 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()
    {
        int[] inpt = GetIntArray();
        int total = inpt[1];

        int[] items = GetIntArray();

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

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

        long ans = 0;
        foreach(int key in dic.Keys) {
            int pairKey = (int)(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