結果

問題 No.5009 Draw A Convex Polygon
ユーザー 遭難者遭難者
提出日時 2022-12-02 00:10:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 197 bytes
コンパイル時間 280 ms
実行使用メモリ 97,464 KB
スコア 0
平均クエリ数 100001.00
最終ジャッジ日時 2022-12-02 00:10:22
合計ジャッジ時間 2,353 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
n = 10 ** 5
h = 10 ** 9
print(n)
for i in reversed(range(n)):
    theta = math.pi * 2 * i / n
    x, y = h * math.cos(theta), h * math.sin(theta)
    print(math.floor(x), math.floor(y))
0