結果

問題 No.723 2つの数の和
ユーザー clocklrclocklr
提出日時 2018-09-28 17:13:34
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 718 bytes
コンパイル時間 4,598 ms
コンパイル使用メモリ 110,048 KB
実行使用メモリ 32,056 KB
最終ジャッジ日時 2024-10-12 05:24:22
合計ジャッジ時間 2,699 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
26,000 KB
testcase_01 AC 24 ms
25,868 KB
testcase_02 AC 25 ms
23,980 KB
testcase_03 AC 49 ms
29,232 KB
testcase_04 AC 55 ms
31,792 KB
testcase_05 AC 52 ms
29,484 KB
testcase_06 AC 54 ms
31,948 KB
testcase_07 AC 40 ms
26,488 KB
testcase_08 AC 41 ms
26,180 KB
testcase_09 AC 54 ms
30,088 KB
testcase_10 AC 40 ms
26,056 KB
testcase_11 AC 32 ms
24,544 KB
testcase_12 AC 44 ms
26,228 KB
testcase_13 AC 25 ms
25,944 KB
testcase_14 AC 24 ms
24,160 KB
testcase_15 AC 24 ms
23,776 KB
testcase_16 AC 25 ms
23,856 KB
testcase_17 AC 24 ms
24,108 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 24 ms
25,756 KB
testcase_21 AC 24 ms
23,984 KB
testcase_22 AC 25 ms
26,132 KB
testcase_23 AC 55 ms
32,012 KB
testcase_24 AC 38 ms
25,808 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(' ');
            int[] count = new int[300000];
            for(int i=0;i<n;i++){
                int temp = int.Parse(num[i]);
                count[temp]++;
            }
            int ans = 0;
            for(int i=0;i<=x;i++){
                int j = x-i;
                ans += count[i] * count[j];
            }
            WriteLine(ans);
        }
    }
}
0