結果

問題 No.723 2つの数の和
ユーザー pluto77pluto77
提出日時 2018-08-05 11:54:52
言語 Python2
(2.7.18)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 159 bytes
コンパイル時間 106 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 20,324 KB
最終ジャッジ日時 2024-09-19 18:02:28
合計ジャッジ時間 2,986 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
6,816 KB
testcase_01 AC 13 ms
6,944 KB
testcase_02 AC 12 ms
6,944 KB
testcase_03 AC 101 ms
13,172 KB
testcase_04 AC 128 ms
14,724 KB
testcase_05 AC 119 ms
14,128 KB
testcase_06 AC 123 ms
14,364 KB
testcase_07 AC 65 ms
12,204 KB
testcase_08 AC 69 ms
12,420 KB
testcase_09 AC 133 ms
14,984 KB
testcase_10 AC 61 ms
12,264 KB
testcase_11 AC 23 ms
8,192 KB
testcase_12 AC 81 ms
12,728 KB
testcase_13 AC 143 ms
15,176 KB
testcase_14 AC 42 ms
8,752 KB
testcase_15 AC 68 ms
12,380 KB
testcase_16 AC 93 ms
12,916 KB
testcase_17 AC 118 ms
13,832 KB
testcase_18 AC 96 ms
8,304 KB
testcase_19 AC 113 ms
15,232 KB
testcase_20 AC 12 ms
6,940 KB
testcase_21 AC 12 ms
6,940 KB
testcase_22 AC 12 ms
6,940 KB
testcase_23 AC 117 ms
20,324 KB
testcase_24 AC 51 ms
11,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki723
import collections

n,x=map(int,raw_input().split())
a=map(int,raw_input().split())
c=collections.Counter(a)
cnt=0
for b in a:
 cnt+=c[x-b]
print cnt
0