結果

問題 No.1389 Clumsy Calculation
ユーザー paruf4paruf4
提出日時 2021-02-12 21:42:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 249 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 131,328 KB
最終ジャッジ日時 2024-07-19 20:49:17
合計ジャッジ時間 4,030 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,328 KB
testcase_01 AC 40 ms
51,584 KB
testcase_02 AC 40 ms
51,712 KB
testcase_03 AC 50 ms
60,800 KB
testcase_04 WA -
testcase_05 AC 46 ms
61,312 KB
testcase_06 AC 45 ms
60,800 KB
testcase_07 AC 46 ms
61,312 KB
testcase_08 AC 37 ms
51,712 KB
testcase_09 AC 129 ms
125,560 KB
testcase_10 AC 106 ms
127,104 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 130 ms
120,448 KB
testcase_15 AC 126 ms
120,320 KB
testcase_16 AC 134 ms
120,448 KB
testcase_17 AC 138 ms
115,760 KB
testcase_18 AC 132 ms
115,520 KB
testcase_19 AC 131 ms
115,892 KB
testcase_20 AC 133 ms
115,760 KB
testcase_21 AC 130 ms
115,376 KB
testcase_22 AC 129 ms
116,148 KB
testcase_23 AC 134 ms
115,756 KB
testcase_24 AC 133 ms
115,376 KB
testcase_25 AC 132 ms
115,500 KB
testcase_26 WA -
testcase_27 AC 126 ms
120,448 KB
testcase_28 AC 128 ms
115,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, x = map(int, input().split())
s = list(map(int, input().split()))
sm = sum(s)
a = []
for ss in s:
    a.append(x-ss)
s = set(s)
b = []
sa = sum(a)
for aa in a:
    b.append(sa-aa)

for bb in b:
    if bb*2 in s:
        print(bb)
        exit(0)
0