結果
| 問題 | No.723 2つの数の和 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2018-10-04 16:37:47 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 176 bytes |
| コンパイル時間 | 145 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 31,276 KB |
| 最終ジャッジ日時 | 2024-10-12 12:17:24 |
| 合計ジャッジ時間 | 5,552 ms |
|
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 RE * 2 |
| other | RE * 10 TLE * 1 -- * 11 |
ソースコード
n,x=map(int,input().split())
a=list(map(int,input().split()))
c=0
for i in range(0,n):
for s in range(0,n):
if a[s]+a[i]==x and s!=t:
c+=1
print(c)