結果

問題 No.1389 Clumsy Calculation
ユーザー lllllll88938494lllllll88938494
提出日時 2022-01-12 06:48:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 258 bytes
コンパイル時間 364 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 107,776 KB
最終ジャッジ日時 2024-11-15 08:13:20
合計ジャッジ時間 4,773 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 46 ms
60,288 KB
testcase_04 AC 46 ms
60,288 KB
testcase_05 AC 47 ms
61,312 KB
testcase_06 AC 48 ms
60,800 KB
testcase_07 AC 46 ms
61,548 KB
testcase_08 AC 39 ms
52,596 KB
testcase_09 AC 99 ms
102,100 KB
testcase_10 AC 75 ms
97,152 KB
testcase_11 AC 45 ms
60,672 KB
testcase_12 AC 45 ms
59,776 KB
testcase_13 AC 46 ms
60,416 KB
testcase_14 AC 89 ms
105,928 KB
testcase_15 AC 88 ms
105,856 KB
testcase_16 AC 90 ms
105,088 KB
testcase_17 AC 93 ms
107,604 KB
testcase_18 AC 94 ms
107,336 KB
testcase_19 AC 94 ms
107,264 KB
testcase_20 AC 95 ms
107,392 KB
testcase_21 AC 93 ms
107,776 KB
testcase_22 AC 93 ms
107,648 KB
testcase_23 AC 94 ms
107,264 KB
testcase_24 AC 93 ms
107,452 KB
testcase_25 AC 93 ms
107,648 KB
testcase_26 AC 88 ms
104,064 KB
testcase_27 AC 89 ms
104,960 KB
testcase_28 AC 97 ms
107,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k = map(int,input().split())
ns=list(map(int,input().split()))
cnt=0
for i in ns:
    cnt += k-i
    
for i in range(n):
    if ns[i]%2 != 0:
        continue
    t=k-ns[i]
    t2=k-(ns[i]//2)
    if (cnt-t) + t2 == k:
        print(ns[i]//2)
        break
0