結果
| 問題 |
No.5009 Draw A Convex Polygon
|
| コンテスト | |
| ユーザー |
w0mbat
|
| 提出日時 | 2022-12-06 20:30:43 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 169 bytes |
| コンパイル時間 | 334 ms |
| 実行使用メモリ | 101,924 KB |
| スコア | 0 |
| 平均クエリ数 | 958286.00 |
| 最終ジャッジ日時 | 2022-12-06 20:30:50 |
| 合計ジャッジ時間 | 5,312 ms |
|
ジャッジサーバーID (参考情報) |
judge16 / judge13 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 1 |
ソースコード
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
w0mbat