結果

問題 No.1389 Clumsy Calculation
ユーザー terry_u16terry_u16
提出日時 2021-02-12 21:58:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 108 ms / 2,000 ms
コード長 450 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 110,336 KB
最終ジャッジ日時 2024-07-19 21:17:41
合計ジャッジ時間 3,950 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 37 ms
51,584 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 49 ms
61,312 KB
testcase_04 AC 49 ms
61,312 KB
testcase_05 AC 50 ms
62,208 KB
testcase_06 AC 50 ms
61,824 KB
testcase_07 AC 46 ms
61,696 KB
testcase_08 AC 37 ms
51,840 KB
testcase_09 AC 104 ms
102,092 KB
testcase_10 AC 87 ms
103,424 KB
testcase_11 AC 46 ms
61,184 KB
testcase_12 AC 46 ms
60,672 KB
testcase_13 AC 49 ms
61,440 KB
testcase_14 AC 101 ms
109,824 KB
testcase_15 AC 102 ms
109,956 KB
testcase_16 AC 98 ms
109,952 KB
testcase_17 AC 97 ms
110,208 KB
testcase_18 AC 102 ms
110,336 KB
testcase_19 AC 107 ms
110,080 KB
testcase_20 AC 99 ms
110,080 KB
testcase_21 AC 104 ms
110,336 KB
testcase_22 AC 102 ms
110,208 KB
testcase_23 AC 108 ms
110,336 KB
testcase_24 AC 102 ms
109,952 KB
testcase_25 AC 103 ms
110,336 KB
testcase_26 AC 99 ms
109,308 KB
testcase_27 AC 103 ms
109,824 KB
testcase_28 AC 102 ms
109,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, x = map(int, input().split())
s = list(map(int, input().split()))

fromLeft = [0] * (n + 1)
fromRight = [0] * (n + 1)

for i in range(len(s)):
    fromLeft[i + 1] = fromLeft[i] + s[i]

for i in reversed(range(len(s))):
    fromRight[i] = fromRight[i + 1] + s[i]

for i in range(len(s)):
    if s[i] % 2 != 0:
        continue
    half = s[i] // 2
    
    if fromLeft[i] + fromRight[i + 1] + half == (n - 1) * x:
        print(half)
        exit()
0