結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
22,884 KB
testcase_01 AC 29 ms
24,924 KB
testcase_02 AC 29 ms
25,056 KB
testcase_03 AC 56 ms
30,648 KB
testcase_04 RE -
testcase_05 RE -
testcase_06 AC 62 ms
33,536 KB
testcase_07 AC 46 ms
29,664 KB
testcase_08 AC 46 ms
25,140 KB
testcase_09 AC 63 ms
31,564 KB
testcase_10 RE -
testcase_11 AC 36 ms
26,472 KB
testcase_12 AC 49 ms
27,352 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
25,056 KB
testcase_21 AC 29 ms
25,316 KB
testcase_22 AC 28 ms
27,216 KB
testcase_23 AC 64 ms
33,644 KB
testcase_24 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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[100000 + 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