結果
問題 | No.2009 Drunkers' Contest |
ユーザー | 👑 Kazun |
提出日時 | 2022-07-15 23:52:49 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 340 bytes |
コンパイル時間 | 140 ms |
コンパイル使用メモリ | 82,156 KB |
実行使用メモリ | 146,016 KB |
最終ジャッジ日時 | 2024-06-27 21:36:55 |
合計ジャッジ時間 | 8,791 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
52,096 KB |
testcase_01 | AC | 35 ms
52,096 KB |
testcase_02 | AC | 35 ms
52,480 KB |
testcase_03 | AC | 35 ms
52,096 KB |
testcase_04 | AC | 35 ms
52,224 KB |
testcase_05 | AC | 35 ms
52,096 KB |
testcase_06 | AC | 35 ms
52,096 KB |
testcase_07 | AC | 35 ms
52,224 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
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 | 153 ms
136,344 KB |
testcase_45 | AC | 139 ms
132,344 KB |
testcase_46 | AC | 162 ms
146,016 KB |
testcase_47 | AC | 159 ms
138,524 KB |
testcase_48 | AC | 157 ms
138,472 KB |
testcase_49 | AC | 158 ms
134,888 KB |
testcase_50 | WA | - |
testcase_51 | AC | 159 ms
135,004 KB |
testcase_52 | AC | 151 ms
127,644 KB |
testcase_53 | AC | 150 ms
142,656 KB |
testcase_54 | AC | 136 ms
131,628 KB |
testcase_55 | AC | 134 ms
127,704 KB |
testcase_56 | AC | 132 ms
127,568 KB |
testcase_57 | AC | 157 ms
144,048 KB |
ソースコード
from math import sqrt N=int(input()) A=list(map(int,input().split())) B=list(map(int,input().split())) S=[] for i in range(N): if bool(S) and S[-1][0]/S[-1][1]>A[i]/B[i]: S[-1][0]+=A[i] S[-1][1]+=B[i] else: S.append([A[i],B[i]]) T=0 for a,b in S: x=max(sqrt(a/b)-1,0) T+=a/(1+x)+b*(1+x) print(T)