CF306D.Polygon
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Polycarpus loves convex polygons, especially if all their angles are the same and all their sides are different. Draw for him any such polygon with the given number of vertexes.
输入格式
The input contains a single integer n ( 3<=n<=100 ) — the number of the polygon vertexes.
输出格式
Print n lines, containing the coordinates of the vertexes of the n -gon " xi yi " in the counter clockwise order. The coordinates of the vertexes shouldn't exceed 106 in their absolute value. The side lengths should fit within limits [1,1000] (not necessarily integer). Mutual comparing sides and angles of your polygon during the test will go with precision of 10−3 .
If there is no solution, print "No solution" (without the quotes).
输入输出样例
输入#1
8
输出#1
1.000 0.000 7.000 0.000 9.000 2.000 9.000 3.000 5.000 7.000 3.000 7.000 0.000 4.000 0.000 1.000