結果
問題 |
No.723 2つの数の和
|
ユーザー |
|
提出日時 | 2019-07-12 13:42:39 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 235 bytes |
コンパイル時間 | 314 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 25,156 KB |
最終ジャッジ日時 | 2024-11-17 11:21:29 |
合計ジャッジ時間 | 3,711 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
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)