結果

問題 No.1230 Hall_and_me
ユーザー anagohirameanagohirame
提出日時 2020-09-18 22:36:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 80 bytes
コンパイル時間 512 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 53,784 KB
最終ジャッジ日時 2024-06-22 10:04:12
合計ジャッジ時間 2,595 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 36
権限があれば一括ダウンロードができます

ソースコード

diff #

p, q, r = map(int, input().split())
print(max(p, q, r, p+q, q+r, r+p) / (p+q+r))
0