結果

問題 No.1389 Clumsy Calculation
ユーザー TomoyarnTomoyarn
提出日時 2022-01-20 20:43:00
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 263 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 233,216 KB
最終ジャッジ日時 2024-11-24 05:07:28
合計ジャッジ時間 48,607 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
57,088 KB
testcase_01 AC 44 ms
159,360 KB
testcase_02 AC 40 ms
57,600 KB
testcase_03 AC 64 ms
171,136 KB
testcase_04 AC 66 ms
68,864 KB
testcase_05 AC 70 ms
171,392 KB
testcase_06 AC 68 ms
69,760 KB
testcase_07 AC 65 ms
68,736 KB
testcase_08 AC 38 ms
56,576 KB
testcase_09 AC 130 ms
233,216 KB
testcase_10 AC 105 ms
131,328 KB
testcase_11 AC 64 ms
171,008 KB
testcase_12 AC 62 ms
68,864 KB
testcase_13 AC 62 ms
169,856 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, X = map(int, input().split())
S = list(map(int, input().split()))
A = []
B = []
for i in range(N):
    A.append(X - S[i])
    B.append(X - (S[i] / 2))

for i in range(N):
    if B[i] + (sum(A) - A[i]) == X:
        ans = i
        break
    
print(S[ans] // 2)
0