結果

問題 No.5009 Draw A Convex Polygon
ユーザー w0mbatw0mbat
提出日時 2022-12-06 19:28:20
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 170 bytes
コンパイル時間 277 ms
実行使用メモリ 101,636 KB
スコア 0
平均クエリ数 958286.00
最終ジャッジ日時 2022-12-06 19:28:28
合計ジャッジ時間 5,529 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

from math import cos, floor, pi, sin
N = 10**6
r = 10**9 - 10
t = 0
d = 2 * pi / N
print(N)
for _ in range(N):
    print(floor(r * cos(t)), floor(r * sin(t)))
    t += d
0