結果
| 問題 | No.1230 Hall_and_me |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-11-17 12:35:25 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 102 bytes |
| 記録 | |
| コンパイル時間 | 294 ms |
| コンパイル使用メモリ | 21,540 KB |
| 実行使用メモリ | 16,000 KB |
| 最終ジャッジ日時 | 2026-08-23 21:38:22 |
| 合計ジャッジ時間 | 6,266 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 3 WA * 33 |
ソースコード
p,q,r=map(int,input().split()) a=p/(p+q+r) b=q/(p+q+r) c=r/(p+q+r) print(max(max(a,b,c),1-max(a,b,c)))