結果
問題 | No.2009 Drunkers' Contest |
ユーザー | tassei903 |
提出日時 | 2022-07-16 01:58:36 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 608 bytes |
コンパイル時間 | 360 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 131,972 KB |
最終ジャッジ日時 | 2024-06-28 00:13:20 |
合計ジャッジ時間 | 9,281 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
51,968 KB |
testcase_01 | AC | 41 ms
52,480 KB |
testcase_02 | AC | 43 ms
52,480 KB |
testcase_03 | AC | 40 ms
51,840 KB |
testcase_04 | AC | 41 ms
51,584 KB |
testcase_05 | AC | 44 ms
52,480 KB |
testcase_06 | AC | 42 ms
51,968 KB |
testcase_07 | AC | 45 ms
52,224 KB |
testcase_08 | WA | - |
testcase_09 | AC | 41 ms
51,712 KB |
testcase_10 | WA | - |
testcase_11 | AC | 40 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 | AC | 53 ms
60,800 KB |
testcase_20 | WA | - |
testcase_21 | AC | 50 ms
61,056 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 151 ms
131,328 KB |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 152 ms
131,324 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | AC | 156 ms
129,524 KB |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | AC | 149 ms
129,648 KB |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | AC | 153 ms
131,716 KB |
testcase_45 | AC | 157 ms
131,972 KB |
testcase_46 | AC | 143 ms
127,104 KB |
testcase_47 | AC | 144 ms
107,648 KB |
testcase_48 | AC | 140 ms
107,904 KB |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | WA | - |
testcase_56 | WA | - |
testcase_57 | WA | - |
ソースコード
import sys input = lambda :sys.stdin.readline()[:-1] ni = lambda :int(input()) na = lambda :list(map(int,input().split())) yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES") no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO") ##################################################################### n = ni() a = na() b = na() ans = 0 i = 0 while i < n: r = i A = 0 B = 0 while r < n and a[r] * b[i] <= a[i] * b[r]: A += a[r] B += b[r] r += 1 x1 = max(A / B, 1)**0.5 ans += A/x1 + B * x1 i = r print(ans)