結果
問題 | No.2009 Drunkers' Contest |
ユーザー | Akijin_007 |
提出日時 | 2022-07-15 22:40:12 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 722 bytes |
コンパイル時間 | 327 ms |
コンパイル使用メモリ | 82,364 KB |
実行使用メモリ | 147,232 KB |
最終ジャッジ日時 | 2024-06-27 19:33:24 |
合計ジャッジ時間 | 16,526 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
52,096 KB |
testcase_01 | AC | 35 ms
52,224 KB |
testcase_02 | AC | 35 ms
52,096 KB |
testcase_03 | AC | 36 ms
52,224 KB |
testcase_04 | AC | 35 ms
52,224 KB |
testcase_05 | AC | 35 ms
52,608 KB |
testcase_06 | AC | 36 ms
51,968 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 35 ms
52,096 KB |
testcase_11 | AC | 35 ms
52,096 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
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 | WA | - |
testcase_44 | AC | 205 ms
137,612 KB |
testcase_45 | AC | 237 ms
137,532 KB |
testcase_46 | AC | 221 ms
145,928 KB |
testcase_47 | AC | 204 ms
138,716 KB |
testcase_48 | AC | 205 ms
138,724 KB |
testcase_49 | AC | 230 ms
138,844 KB |
testcase_50 | AC | 219 ms
138,848 KB |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | WA | - |
testcase_56 | WA | - |
testcase_57 | WA | - |
ソースコード
#int(input()) #map(int, input().split()) #list(map(int, input().split())) N = int(input()) A = list(map(int, input().split())) B = list(map(int, input().split())) ans = 0 x = 0 def time(x, a, b): return a / (1 + x) + b * (1 + x) ans = 0 c = [] a = 0 b = 0 for i in range(N): a += A[i] b += B[i] c.append([max(1, (a/b)**0.5)-1, i+1]) c = sorted(c, reverse=True) k = 0 u = [0] * N while c: t = c.pop() if t[1] > k: sa = 0 sb = 0 for i in range(k, t[1]): sa += A[i] sb += B[i] for i in range(k, t[1]): u[i] = max(0, (sa/sb) ** 0.5 - 1) k = t[1] for i in range(N): ans += time(u[i], A[i], B[i]) print(ans)