結果

問題 No.1389 Clumsy Calculation
ユーザー mesame3993mesame3993
提出日時 2021-10-30 03:24:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 219 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 107,428 KB
最終ジャッジ日時 2024-10-07 13:19:54
合計ジャッジ時間 3,517 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,304 KB
testcase_01 AC 33 ms
51,744 KB
testcase_02 AC 32 ms
52,632 KB
testcase_03 AC 42 ms
60,024 KB
testcase_04 AC 37 ms
60,020 KB
testcase_05 AC 39 ms
60,092 KB
testcase_06 AC 38 ms
60,000 KB
testcase_07 AC 40 ms
59,964 KB
testcase_08 AC 34 ms
53,180 KB
testcase_09 AC 90 ms
102,052 KB
testcase_10 AC 66 ms
96,712 KB
testcase_11 AC 38 ms
59,592 KB
testcase_12 AC 38 ms
59,560 KB
testcase_13 AC 39 ms
59,368 KB
testcase_14 AC 77 ms
104,524 KB
testcase_15 AC 78 ms
105,312 KB
testcase_16 AC 77 ms
105,004 KB
testcase_17 AC 84 ms
107,304 KB
testcase_18 AC 84 ms
107,276 KB
testcase_19 AC 83 ms
106,840 KB
testcase_20 AC 84 ms
107,380 KB
testcase_21 AC 84 ms
107,428 KB
testcase_22 AC 86 ms
106,736 KB
testcase_23 AC 87 ms
107,140 KB
testcase_24 AC 83 ms
107,040 KB
testcase_25 AC 85 ms
107,064 KB
testcase_26 AC 79 ms
103,992 KB
testcase_27 AC 77 ms
104,192 KB
testcase_28 AC 85 ms
107,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, x = map(int, input().split())
s = list(map(int, input().split()))
t = sum(s)
for i in range(n):
  tmp = (t - s[i]//2) // (n-1)
  if tmp == x and s[i]%2 == 0 and (t - s[i]//2)%(n-1)==0:
    print(s[i] // 2)
    exit()
0