結果

問題 No.1389 Clumsy Calculation
ユーザー HAPPAHAPPA
提出日時 2021-02-12 21:35:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 415 bytes
コンパイル時間 108 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 33,288 KB
最終ジャッジ日時 2024-07-19 20:32:48
合計ジャッジ時間 3,924 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,624 KB
testcase_01 AC 32 ms
10,496 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 32 ms
10,880 KB
testcase_05 AC 32 ms
11,008 KB
testcase_06 AC 32 ms
10,880 KB
testcase_07 AC 32 ms
10,752 KB
testcase_08 AC 31 ms
10,624 KB
testcase_09 AC 101 ms
32,544 KB
testcase_10 AC 68 ms
14,504 KB
testcase_11 AC 32 ms
10,752 KB
testcase_12 AC 31 ms
10,752 KB
testcase_13 AC 31 ms
10,624 KB
testcase_14 AC 121 ms
30,040 KB
testcase_15 AC 117 ms
30,036 KB
testcase_16 AC 120 ms
30,040 KB
testcase_17 AC 128 ms
33,288 KB
testcase_18 AC 117 ms
33,032 KB
testcase_19 AC 125 ms
33,156 KB
testcase_20 AC 124 ms
33,284 KB
testcase_21 AC 120 ms
33,260 KB
testcase_22 AC 121 ms
33,216 KB
testcase_23 AC 129 ms
33,160 KB
testcase_24 AC 119 ms
33,244 KB
testcase_25 AC 124 ms
33,288 KB
testcase_26 AC 126 ms
30,668 KB
testcase_27 AC 117 ms
30,032 KB
testcase_28 AC 120 ms
33,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 7)
input = sys.stdin.readline
f_inf = float('inf')
mod = 10 ** 9 + 7


def resolve():
    n, x = map(int, input().split())
    S = list(map(int, input().split()))

    tot = sum(S)
    for i in range(n):
        if S[i] % 2 == 0:
            if tot - S[i] // 2 == x * (n - 1):
                print(S[i] // 2)
                break


if __name__ == '__main__':
    resolve()
0