結果

問題 No.1230 Hall_and_me
ユーザー yukuyon
提出日時 2020-09-19 20:49:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 99 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,640 KB
実行使用メモリ 53,480 KB
最終ジャッジ日時 2024-06-23 18:22:11
合計ジャッジ時間 2,663 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 36
権限があれば一括ダウンロードができます

ソースコード

diff #

p,q,r=map(int,input().split())
o=p/(p+r+q)
t=q/(p+r+q)
th=r/(p+r+q)
print(max(o,1-o,t,1-t,th,1-th))
0