結果

問題 No.5009 Draw A Convex Polygon
ユーザー w0mbat
提出日時 2022-12-06 20:35:50
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 160 bytes
コンパイル時間 884 ms
実行使用メモリ 101,680 KB
スコア 0
平均クエリ数 958286.00
最終ジャッジ日時 2022-12-06 20:35:56
合計ジャッジ時間 5,590 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

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