結果
| 問題 | No.723 2つの数の和 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-07-12 13:42:39 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 235 bytes |
| 記録 | |
| コンパイル時間 | 354 ms |
| コンパイル使用メモリ | 20,700 KB |
| 実行使用メモリ | 29,276 KB |
| 最終ジャッジ日時 | 2026-05-12 08:51:59 |
| 合計ジャッジ時間 | 4,692 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / tmp-judge_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 22 |
ソースコード
n, x = map(int, input().split())
a = list(map(int, input().split()))
d = {}
for i in a:
if not i in d:
d[i] = 1
else:
d[i] += 1
print(d)
c = 0
for i in d:
if x - i in d:
c += d[i] * d[x-i]
print(c)