結果

問題 No.723 2つの数の和
ユーザー るこーそーるこーそー
提出日時 2024-10-03 18:31:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 78 ms / 2,000 ms
コード長 157 bytes
コンパイル時間 730 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 100,040 KB
最終ジャッジ日時 2024-10-03 18:31:26
合計ジャッジ時間 3,445 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,440 KB
testcase_01 AC 36 ms
54,792 KB
testcase_02 AC 36 ms
54,004 KB
testcase_03 AC 68 ms
86,460 KB
testcase_04 AC 76 ms
94,844 KB
testcase_05 AC 74 ms
92,640 KB
testcase_06 AC 72 ms
92,816 KB
testcase_07 AC 66 ms
77,304 KB
testcase_08 AC 57 ms
79,048 KB
testcase_09 AC 78 ms
96,236 KB
testcase_10 AC 57 ms
76,244 KB
testcase_11 AC 45 ms
65,180 KB
testcase_12 AC 61 ms
81,300 KB
testcase_13 AC 74 ms
95,336 KB
testcase_14 AC 51 ms
70,424 KB
testcase_15 AC 55 ms
76,576 KB
testcase_16 AC 64 ms
85,044 KB
testcase_17 AC 75 ms
90,808 KB
testcase_18 AC 64 ms
82,336 KB
testcase_19 AC 68 ms
84,860 KB
testcase_20 AC 41 ms
54,392 KB
testcase_21 AC 41 ms
54,920 KB
testcase_22 AC 39 ms
54,500 KB
testcase_23 AC 78 ms
100,040 KB
testcase_24 AC 59 ms
73,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

n,x=map(int,input().split())
A=list(map(int,input().split()))

cnt=Counter(A)
ans=0
for a in A:
    ans+=cnt[x-a]
print(ans)
0