結果

問題 No.723 2つの数の和
ユーザー _matumo__matumo_
提出日時 2018-09-13 17:27:54
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 594 bytes
コンパイル時間 797 ms
コンパイル使用メモリ 110,472 KB
実行使用メモリ 34,260 KB
最終ジャッジ日時 2024-07-01 04:27:27
合計ジャッジ時間 2,879 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
23,136 KB
testcase_01 AC 30 ms
25,428 KB
testcase_02 AC 30 ms
24,936 KB
testcase_03 AC 56 ms
33,084 KB
testcase_04 AC 63 ms
31,880 KB
testcase_05 AC 61 ms
29,564 KB
testcase_06 AC 62 ms
29,960 KB
testcase_07 AC 45 ms
27,760 KB
testcase_08 AC 48 ms
29,652 KB
testcase_09 AC 64 ms
34,012 KB
testcase_10 AC 45 ms
27,560 KB
testcase_11 AC 37 ms
28,012 KB
testcase_12 AC 50 ms
27,816 KB
testcase_13 AC 65 ms
34,260 KB
testcase_14 AC 40 ms
26,668 KB
testcase_15 AC 47 ms
25,648 KB
testcase_16 AC 53 ms
28,352 KB
testcase_17 AC 59 ms
33,652 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 28 ms
23,004 KB
testcase_21 AC 29 ms
25,128 KB
testcase_22 AC 29 ms
25,316 KB
testcase_23 AC 65 ms
34,172 KB
testcase_24 AC 42 ms
26,928 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.Linq;
namespace YukiCoder
{
    class Program
    {
        static void Main(string[] args)
        {
            var va = Console.ReadLine().Split().Select(int.Parse).ToArray();
            var vb = Console.ReadLine().Split().Select(int.Parse).ToArray();
            int N = va[0];
            int M = va[1];
            int[] xa = new int[200000 + 1];
            var xSum = 0;
            foreach (var n in vb) if (M - n >= 0 && M - n <= 200000) xa[M - n]++;
            foreach (var n in vb)   xSum += xa[n];
            Console.WriteLine(xSum);
        }
    }
}
0