結果

問題 No.723 2つの数の和
ユーザー clocklrclocklr
提出日時 2018-09-28 17:26:43
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 722 bytes
コンパイル時間 830 ms
コンパイル使用メモリ 112,740 KB
実行使用メモリ 32,644 KB
最終ジャッジ日時 2024-10-12 05:24:58
合計ジャッジ時間 2,645 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
22,196 KB
testcase_01 AC 24 ms
21,680 KB
testcase_02 AC 25 ms
26,116 KB
testcase_03 AC 50 ms
30,040 KB
testcase_04 AC 57 ms
28,604 KB
testcase_05 AC 55 ms
29,892 KB
testcase_06 AC 56 ms
30,400 KB
testcase_07 AC 42 ms
28,284 KB
testcase_08 AC 43 ms
28,112 KB
testcase_09 AC 56 ms
30,224 KB
testcase_10 AC 42 ms
26,568 KB
testcase_11 AC 32 ms
26,724 KB
testcase_12 AC 44 ms
26,540 KB
testcase_13 AC 23 ms
23,832 KB
testcase_14 AC 24 ms
25,992 KB
testcase_15 AC 24 ms
26,072 KB
testcase_16 AC 24 ms
23,784 KB
testcase_17 AC 24 ms
24,240 KB
testcase_18 AC 48 ms
30,664 KB
testcase_19 AC 56 ms
30,148 KB
testcase_20 AC 23 ms
23,936 KB
testcase_21 AC 24 ms
25,976 KB
testcase_22 AC 24 ms
25,868 KB
testcase_23 AC 56 ms
32,644 KB
testcase_24 AC 38 ms
25,824 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 static System.Console;
using static System.Math;

public class Hello{
    public static void Main(){
        string[] input = ReadLine().Split(' ');
        int n = int.Parse(input[0]);
        int x = int.Parse(input[1]);
        if(x>200000){
            WriteLine("0");
        }else{
            string[] num = ReadLine().Split(' ');
            long[] count = new long[300000];
            for(int i=0;i<n;i++){
                int temp = int.Parse(num[i]);
                count[temp]++;
            }
            long ans = 0;
            for(int i=0;i<=x;i++){
                int j = x-i;
                ans += count[i] * count[j];
            }
            WriteLine(ans);
        }
    }
}
0