結果

問題 No.723 2つの数の和
ユーザー masumasumath1masumasumath1
提出日時 2020-01-08 21:04:42
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 256 bytes
コンパイル時間 82 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 20,732 KB
最終ジャッジ日時 2024-11-23 03:07:17
合計ジャッジ時間 2,991 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 91 ms
17,052 KB
testcase_04 RE -
testcase_05 AC 115 ms
19,088 KB
testcase_06 AC 114 ms
19,108 KB
testcase_07 AC 67 ms
15,096 KB
testcase_08 AC 75 ms
15,868 KB
testcase_09 AC 106 ms
20,356 KB
testcase_10 RE -
testcase_11 AC 42 ms
12,288 KB
testcase_12 AC 76 ms
15,872 KB
testcase_13 AC 118 ms
20,532 KB
testcase_14 AC 54 ms
13,568 KB
testcase_15 AC 71 ms
15,188 KB
testcase_16 AC 87 ms
16,804 KB
testcase_17 AC 107 ms
18,828 KB
testcase_18 AC 108 ms
12,636 KB
testcase_19 AC 144 ms
20,732 KB
testcase_20 AC 29 ms
10,624 KB
testcase_21 AC 29 ms
10,496 KB
testcase_22 AC 28 ms
10,624 KB
testcase_23 AC 138 ms
20,660 KB
testcase_24 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, X = map(int,input().split())
A = list(map(int,input().split()))
cnt = [0 for _ in range(max(A)+1)]
Y = [0 for _ in range(N)]
ans = 0
for i in range(N):
    cnt[A[i]] += 1
for a in A:
    if X-a >= 0 and X-a <=len(cnt):
        ans += cnt[X-a]
print(ans)
0