結果

問題 No.723 2つの数の和
ユーザー brthyyjpbrthyyjp
提出日時 2020-03-30 04:07:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 281 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 97,724 KB
最終ジャッジ日時 2024-06-10 19:47:30
合計ジャッジ時間 2,757 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,320 KB
testcase_01 AC 37 ms
52,212 KB
testcase_02 AC 37 ms
53,164 KB
testcase_03 AC 63 ms
84,564 KB
testcase_04 AC 73 ms
93,120 KB
testcase_05 AC 73 ms
91,032 KB
testcase_06 AC 67 ms
91,124 KB
testcase_07 AC 53 ms
75,396 KB
testcase_08 AC 54 ms
77,052 KB
testcase_09 AC 72 ms
92,844 KB
testcase_10 AC 54 ms
74,160 KB
testcase_11 AC 40 ms
62,820 KB
testcase_12 AC 61 ms
79,324 KB
testcase_13 AC 77 ms
91,236 KB
testcase_14 AC 50 ms
68,340 KB
testcase_15 AC 52 ms
73,732 KB
testcase_16 AC 59 ms
82,900 KB
testcase_17 AC 62 ms
87,412 KB
testcase_18 AC 53 ms
80,484 KB
testcase_19 AC 58 ms
83,636 KB
testcase_20 AC 34 ms
52,880 KB
testcase_21 AC 33 ms
52,012 KB
testcase_22 AC 32 ms
53,444 KB
testcase_23 AC 72 ms
97,724 KB
testcase_24 AC 46 ms
70,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, x = map(int, input().split())
A = list(map(int, input().split()))
d = {}
ans = 0
for a in A:
    if a not in d:
        d[a] = 1
    else:
        d[a] += 1
    if x-a in d:
        if a != x-a:
            ans += 2*d[x-a]
        else:
            ans += 2*d[x-a]-1
print(ans)
0