302152: CF409E. Dome
Memory Limit:256 MB
Time Limit:1 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
Dome
题意翻译
### 题目背景 本题为CodeForces 2013年的愚人节题目 ### 题目要求 给定一个正四棱锥内切半球的半径,求这个四棱锥的底边长l与高h(1<=l,h<=10且l,h均为整数)。如果有多个解,只要输出其中任一一组即可。 ### 输入格式 1行,一个六位小数,内切半球半径。 ### 输出格式 1行,用一个空格隔开的两个整数,依次为这个四棱锥的底边长l与高h(1<=l,h<=10且l,h均为整数)。如果有多个解,只要输出其中任一一组即可。 ### 说明 本题在评判时会根据您给出的解反算内切半球半径,只要相差小于10^(-6)即算通过。题目描述
![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF409E/c698d48072b8e541133a6c77e30e37def2cb2a5f.png)输入输出格式
输入格式
The input contains a single floating-point number $ x $ with exactly 6 decimal places ( $ 0<x<5 $ ).
输出格式
Output two integers separated by a single space. Each integer should be between 1 and 10, inclusive. If several solutions exist, output any of them. Solution will exist for all tests.
输入输出样例
输入样例 #1
1.200000
输出样例 #1
3 2
输入样例 #2
2.572479
输出样例 #2
10 3
输入样例 #3
4.024922
输出样例 #3
9 9