結果

問題 No.723 2つの数の和
ユーザー PalearcticPalearctic
提出日時 2018-09-03 02:04:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 291 bytes
コンパイル時間 106 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 25,160 KB
最終ジャッジ日時 2024-10-04 14:22:56
合計ジャッジ時間 3,057 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 26 ms
10,880 KB
testcase_03 AC 83 ms
19,584 KB
testcase_04 AC 106 ms
20,848 KB
testcase_05 AC 96 ms
21,124 KB
testcase_06 AC 100 ms
20,960 KB
testcase_07 AC 57 ms
16,312 KB
testcase_08 AC 59 ms
17,012 KB
testcase_09 AC 99 ms
20,340 KB
testcase_10 AC 58 ms
16,204 KB
testcase_11 AC 32 ms
12,032 KB
testcase_12 AC 64 ms
16,588 KB
testcase_13 AC 99 ms
20,792 KB
testcase_14 AC 45 ms
13,696 KB
testcase_15 AC 60 ms
16,464 KB
testcase_16 AC 79 ms
19,368 KB
testcase_17 AC 94 ms
20,140 KB
testcase_18 AC 66 ms
12,628 KB
testcase_19 AC 82 ms
20,848 KB
testcase_20 AC 26 ms
10,880 KB
testcase_21 AC 26 ms
10,752 KB
testcase_22 AC 24 ms
10,752 KB
testcase_23 AC 135 ms
25,160 KB
testcase_24 AC 47 ms
15,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,X=list(map(int,input().split()))
a=list(map(int,input().split()))

d={}
for i in a:
    d[i]=0
for i in a:
    d[i]+=1

count=0
for i in d.keys():
    if(i<=X and X-i in d):
        if(2*i==X):
            count+=d[i]+d[i]*(d[i]-1)
        else:
            count+=d[X-i]*d[i]
print(count)
0