結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
27,176 KB
testcase_01 AC 29 ms
25,256 KB
testcase_02 AC 30 ms
27,484 KB
testcase_03 AC 56 ms
31,148 KB
testcase_04 AC 63 ms
31,620 KB
testcase_05 AC 61 ms
31,612 KB
testcase_06 AC 62 ms
29,964 KB
testcase_07 AC 46 ms
29,676 KB
testcase_08 AC 48 ms
29,404 KB
testcase_09 AC 63 ms
33,888 KB
testcase_10 AC 46 ms
27,584 KB
testcase_11 AC 36 ms
26,028 KB
testcase_12 AC 50 ms
27,744 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 29 ms
27,224 KB
testcase_21 AC 30 ms
27,272 KB
testcase_22 AC 29 ms
25,252 KB
testcase_23 AC 64 ms
32,116 KB
testcase_24 AC 42 ms
26,796 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) xa[M - n]++;
            foreach (var n in vb)   xSum += xa[n];
            Console.WriteLine(xSum);
        }
    }
}
0