結果

問題 No.723 2つの数の和
ユーザー bluemeganebluemegane
提出日時 2018-09-05 20:09:30
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 777 bytes
コンパイル時間 813 ms
コンパイル使用メモリ 104,064 KB
実行使用メモリ 37,180 KB
最終ジャッジ日時 2024-04-27 14:37:38
合計ジャッジ時間 2,844 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
24,220 KB
testcase_01 AC 27 ms
26,288 KB
testcase_02 AC 26 ms
24,340 KB
testcase_03 AC 63 ms
32,268 KB
testcase_04 AC 71 ms
33,340 KB
testcase_05 AC 67 ms
32,856 KB
testcase_06 AC 69 ms
35,408 KB
testcase_07 AC 48 ms
27,032 KB
testcase_08 AC 51 ms
27,676 KB
testcase_09 AC 73 ms
35,636 KB
testcase_10 AC 47 ms
29,236 KB
testcase_11 AC 34 ms
27,036 KB
testcase_12 AC 53 ms
30,952 KB
testcase_13 AC 71 ms
35,628 KB
testcase_14 AC 39 ms
26,744 KB
testcase_15 AC 48 ms
29,088 KB
testcase_16 AC 58 ms
29,616 KB
testcase_17 AC 65 ms
35,160 KB
testcase_18 AC 57 ms
30,240 KB
testcase_19 AC 64 ms
30,184 KB
testcase_20 AC 28 ms
26,164 KB
testcase_21 AC 26 ms
23,964 KB
testcase_22 AC 27 ms
24,088 KB
testcase_23 AC 73 ms
37,180 KB
testcase_24 AC 44 ms
26,388 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System.Collections.Generic;
using System;

public class hello
{
    public static void Main()
    {
        var d = new Dictionary<int, long>();
        string[] line = Console.ReadLine().Trim().Split(' ');
        var n = int.Parse(line[0]);
        var a = int.Parse(line[1]);
        line = Console.ReadLine().Trim().Split(' ');
        for (int i = 0; i < n; i++)
        {
            var w = int.Parse(line[i]);
            if (d.ContainsKey(w)) d[w]++;
            else d[w] = 1;
        }
        var ans = 0L;
        foreach (var x in d)
        {
            var s = a - x.Key;
            if (x.Key == s) ans += x.Value * x.Value;
            else if (d.ContainsKey(s))
                ans += x.Value * d[s];
        }
        Console.WriteLine(ans);
    }
}
0