結果
問題 | No.1251 絶対に間違ってはいけない最小化問題 |
ユーザー | mesame3993 |
提出日時 | 2021-11-19 01:04:20 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 565 bytes |
コンパイル時間 | 309 ms |
コンパイル使用メモリ | 82,452 KB |
実行使用メモリ | 127,132 KB |
最終ジャッジ日時 | 2024-06-08 15:57:33 |
合計ジャッジ時間 | 23,669 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
52,224 KB |
testcase_01 | AC | 36 ms
52,096 KB |
testcase_02 | AC | 37 ms
51,712 KB |
testcase_03 | AC | 37 ms
51,840 KB |
testcase_04 | AC | 38 ms
51,968 KB |
testcase_05 | AC | 38 ms
52,352 KB |
testcase_06 | AC | 38 ms
51,968 KB |
testcase_07 | AC | 36 ms
52,096 KB |
testcase_08 | AC | 38 ms
51,968 KB |
testcase_09 | AC | 38 ms
51,968 KB |
testcase_10 | AC | 36 ms
51,968 KB |
testcase_11 | AC | 35 ms
52,096 KB |
testcase_12 | AC | 36 ms
51,712 KB |
testcase_13 | AC | 37 ms
52,224 KB |
testcase_14 | AC | 37 ms
52,224 KB |
testcase_15 | AC | 36 ms
52,224 KB |
testcase_16 | AC | 38 ms
52,224 KB |
testcase_17 | AC | 37 ms
52,224 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 324 ms
101,888 KB |
testcase_21 | AC | 80 ms
76,796 KB |
testcase_22 | WA | - |
testcase_23 | AC | 74 ms
76,260 KB |
testcase_24 | AC | 456 ms
117,396 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 75 ms
76,544 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | AC | 36 ms
52,352 KB |
testcase_44 | AC | 37 ms
52,096 KB |
ソースコード
def main(): from sys import stdin readline=stdin.readline n = int(readline()) A = list(map(int, readline().split())) B = list(map(int, readline().split())) L = list() for i in range(n): L.append((A[i], B[i])) L.sort() now = 0 su = sum(B) for i in range(n): k, v = L[i] now += v if now >= su//2-1: x0 = k if now >= su//2: x1 = k break else: x1 = L[i+1][0] if n % 2 == 0: x = (x0 + x1) / 2 else: x = x0 f = 0 for i in range(n): f += B[i] * abs(x-A[i]) print(x, int(f)) main()