結果
問題 | No.2009 Drunkers' Contest |
ユーザー | Akijin_007 |
提出日時 | 2022-07-15 22:49:39 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 665 bytes |
コンパイル時間 | 198 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 135,944 KB |
最終ジャッジ日時 | 2024-06-27 19:50:10 |
合計ジャッジ時間 | 10,380 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
52,096 KB |
testcase_01 | AC | 40 ms
52,096 KB |
testcase_02 | AC | 40 ms
52,224 KB |
testcase_03 | AC | 39 ms
52,224 KB |
testcase_04 | AC | 39 ms
52,224 KB |
testcase_05 | AC | 39 ms
51,968 KB |
testcase_06 | AC | 39 ms
51,712 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 38 ms
52,352 KB |
testcase_10 | AC | 39 ms
52,096 KB |
testcase_11 | AC | 39 ms
52,096 KB |
testcase_12 | AC | 39 ms
52,096 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 59 ms
65,024 KB |
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 | AC | 205 ms
134,024 KB |
testcase_26 | AC | 194 ms
133,700 KB |
testcase_27 | AC | 189 ms
135,328 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | AC | 204 ms
134,156 KB |
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 | 164 ms
134,272 KB |
testcase_45 | AC | 188 ms
134,600 KB |
testcase_46 | AC | 171 ms
130,812 KB |
testcase_47 | AC | 156 ms
109,248 KB |
testcase_48 | AC | 155 ms
108,972 KB |
testcase_49 | WA | - |
testcase_50 | AC | 170 ms
114,540 KB |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | AC | 176 ms
130,680 KB |
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) def sake(a, b): return max(0, (a/b)**0.5-1) ans = 0 c = [] sa = sum(A) sb = sum(B) a = 0 b = 0 k = 0 u = [0] * N for i in range(N): t = sake(sa, sb) a += A[i] b += B[i] nt = sake(a, b) if nt <= t: for j in range(k, i+1): u[j] = nt sa -= a sb -= b a = 0 b = 0 k = i+1 for i in range(N): ans += time(u[i], A[i], B[i]) print(ans)