結果

問題 No.723 2つの数の和
ユーザー るこーそーるこーそー
提出日時 2024-08-23 23:14:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 169 bytes
コンパイル時間 446 ms
コンパイル使用メモリ 82,536 KB
実行使用メモリ 85,756 KB
最終ジャッジ日時 2024-08-23 23:14:55
合計ジャッジ時間 3,132 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,604 KB
testcase_01 AC 39 ms
54,044 KB
testcase_02 AC 39 ms
52,596 KB
testcase_03 AC 61 ms
75,524 KB
testcase_04 AC 65 ms
82,448 KB
testcase_05 AC 62 ms
79,984 KB
testcase_06 AC 65 ms
80,324 KB
testcase_07 AC 55 ms
70,612 KB
testcase_08 AC 54 ms
70,536 KB
testcase_09 AC 95 ms
82,408 KB
testcase_10 AC 53 ms
68,648 KB
testcase_11 AC 48 ms
62,812 KB
testcase_12 AC 57 ms
71,848 KB
testcase_13 AC 64 ms
82,144 KB
testcase_14 AC 49 ms
66,692 KB
testcase_15 AC 53 ms
69,076 KB
testcase_16 AC 56 ms
73,112 KB
testcase_17 AC 60 ms
78,796 KB
testcase_18 AC 61 ms
79,640 KB
testcase_19 AC 69 ms
85,756 KB
testcase_20 AC 38 ms
53,108 KB
testcase_21 AC 40 ms
52,820 KB
testcase_22 AC 39 ms
52,840 KB
testcase_23 AC 63 ms
82,500 KB
testcase_24 AC 51 ms
67,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

cnt=[0]*(10**5+1)
for a in A:cnt[a]+=1

ans=0
for a in A:
    if 0<=x-a<len(cnt):ans+=cnt[x-a]

print(ans)
0