結果

問題 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
コンパイル時間 230 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 25,236 KB
最終ジャッジ日時 2024-12-24 14:14:10
合計ジャッジ時間 2,727 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,496 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 AC 76 ms
19,580 KB
testcase_04 AC 97 ms
20,716 KB
testcase_05 AC 88 ms
20,956 KB
testcase_06 AC 100 ms
20,920 KB
testcase_07 AC 57 ms
16,172 KB
testcase_08 AC 61 ms
17,000 KB
testcase_09 AC 100 ms
21,032 KB
testcase_10 AC 57 ms
15,916 KB
testcase_11 AC 35 ms
11,776 KB
testcase_12 AC 64 ms
16,468 KB
testcase_13 AC 94 ms
20,404 KB
testcase_14 AC 41 ms
13,696 KB
testcase_15 AC 54 ms
16,248 KB
testcase_16 AC 71 ms
19,216 KB
testcase_17 AC 81 ms
20,804 KB
testcase_18 AC 66 ms
12,356 KB
testcase_19 AC 84 ms
20,588 KB
testcase_20 AC 29 ms
10,752 KB
testcase_21 AC 26 ms
10,752 KB
testcase_22 AC 26 ms
10,496 KB
testcase_23 AC 124 ms
25,236 KB
testcase_24 AC 47 ms
15,284 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