結果

問題 No.723 2つの数の和
ユーザー ValkyrjaValkyrja
提出日時 2020-06-04 02:39:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 152 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 25,340 KB
最終ジャッジ日時 2024-11-27 06:27:03
合計ジャッジ時間 3,715 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,496 KB
testcase_01 AC 30 ms
10,368 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 102 ms
19,308 KB
testcase_04 AC 130 ms
20,756 KB
testcase_05 AC 118 ms
20,856 KB
testcase_06 AC 122 ms
20,608 KB
testcase_07 AC 70 ms
16,036 KB
testcase_08 AC 75 ms
16,744 KB
testcase_09 AC 129 ms
20,328 KB
testcase_10 AC 69 ms
15,816 KB
testcase_11 AC 39 ms
11,904 KB
testcase_12 AC 85 ms
16,576 KB
testcase_13 AC 134 ms
20,396 KB
testcase_14 AC 52 ms
13,560 KB
testcase_15 AC 70 ms
16,452 KB
testcase_16 AC 94 ms
19,204 KB
testcase_17 AC 116 ms
19,988 KB
testcase_18 AC 88 ms
12,476 KB
testcase_19 AC 111 ms
20,500 KB
testcase_20 AC 30 ms
10,368 KB
testcase_21 AC 30 ms
10,624 KB
testcase_22 AC 30 ms
10,624 KB
testcase_23 AC 111 ms
25,340 KB
testcase_24 AC 58 ms
15,156 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

m,x=map(int,input().split())
a=[int(j)for j in input().split()]
import collections
c=collections.Counter(a)
ans=0
for i in a:
    ans+=c[x-i]
print(ans)
0