結果

問題 No.723 2つの数の和
ユーザー uran110uran110
提出日時 2018-11-16 20:12:27
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 226 bytes
コンパイル時間 236 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 25,328 KB
最終ジャッジ日時 2024-06-06 20:22:15
合計ジャッジ時間 2,581 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 85 ms
19,324 KB
testcase_04 AC 108 ms
20,760 KB
testcase_05 AC 91 ms
20,984 KB
testcase_06 AC 93 ms
20,952 KB
testcase_07 AC 54 ms
16,304 KB
testcase_08 AC 57 ms
17,004 KB
testcase_09 AC 91 ms
20,952 KB
testcase_10 AC 53 ms
16,176 KB
testcase_11 AC 31 ms
11,904 KB
testcase_12 AC 61 ms
16,468 KB
testcase_13 AC 98 ms
20,520 KB
testcase_14 AC 45 ms
13,696 KB
testcase_15 AC 58 ms
16,456 KB
testcase_16 AC 75 ms
19,216 KB
testcase_17 AC 86 ms
20,584 KB
testcase_18 AC 68 ms
12,480 KB
testcase_19 AC 83 ms
20,584 KB
testcase_20 AC 26 ms
10,624 KB
testcase_21 AC 25 ms
10,624 KB
testcase_22 AC 27 ms
10,496 KB
testcase_23 AC 124 ms
25,328 KB
testcase_24 AC 47 ms
15,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ans=0
cnt={}
N,X=map(int,input().split())
a=list(map(int,input().split()))

for i in a:
    if i in cnt:
        cnt[i]+=1
    else:
        cnt[i]=1

for i in cnt:
    if (X-i) in cnt:
        ans+=cnt[i]*cnt[X-i]

print(ans)
0