結果
問題 |
No.1230 Hall_and_me
|
ユーザー |
|
提出日時 | 2025-04-06 11:04:15 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 41 ms / 2,000 ms |
コード長 | 128 bytes |
コンパイル時間 | 456 ms |
コンパイル使用メモリ | 82,232 KB |
実行使用メモリ | 54,124 KB |
最終ジャッジ日時 | 2025-04-06 11:04:19 |
合計ジャッジ時間 | 3,545 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 36 |
ソースコード
P,Q,R = map(int,input().split()) ans = max(max(Q/2,R)+max(Q/2,P),max(R/2,P)+max(R/2,Q),max(P/2,Q)+max(P/2,R))/(P+Q+R) print(ans)