結果
| 問題 |
No.5009 Draw A Convex Polygon
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-12-02 18:36:58 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 153 bytes |
| コンパイル時間 | 248 ms |
| 実行使用メモリ | 97,148 KB |
| スコア | 0 |
| 平均クエリ数 | 100000.00 |
| 最終ジャッジ日時 | 2022-12-02 18:36:59 |
| 合計ジャッジ時間 | 1,487 ms |
|
ジャッジサーバーID (参考情報) |
judge11 / judge13 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | WA * 1 |
ソースコード
import math n = 100000 for i in range(n): x = math.floor(10**9 * math.cos(2*i*math.pi/n)) y = math.floor(10**9 * math.sin(2*i*math.pi/n)) print(x, y)