結果

問題 No.723 2つの数の和
ユーザー honeycombhoneycomb
提出日時 2018-09-24 01:18:12
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 186 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 17,256 KB
最終ジャッジ日時 2024-09-15 12:54:02
合計ジャッジ時間 2,181 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample RE * 3
other RE * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

a, b = map(int,input().split())
xs = map(int,input().split())
cnt = 0
for i in range(len(xs)):
    for j in range(len(xs)):
        if xs[i] + xs[j] == b:
            cnt += 1
print(cnt)
0