結果
| 問題 |
No.5009 Draw A Convex Polygon
|
| コンテスト | |
| ユーザー |
w0mbat
|
| 提出日時 | 2022-12-06 19:23:17 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 161 bytes |
| コンパイル時間 | 268 ms |
| 実行使用メモリ | 107,608 KB |
| スコア | 0 |
| 平均クエリ数 | 958286.00 |
| 最終ジャッジ日時 | 2022-12-06 19:23:20 |
| 合計ジャッジ時間 | 2,802 ms |
|
ジャッジサーバーID (参考情報) |
judge15 / judge14 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | RE * 1 |
ソースコード
from math import cos, floor, pi, sin
N = 10**6
r = 10**9 - 10
t = 0
d = 2 * pi / N
for _ in range(N):
print(floor(r * cos(t)), floor(r * sin(t)))
t += d
w0mbat