結果
| 問題 |
No.5009 Draw A Convex Polygon
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-12-08 18:30:41 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 165 bytes |
| コンパイル時間 | 64 ms |
| 実行使用メモリ | 22,608 KB |
| スコア | 0 |
| 平均クエリ数 | 1.00 |
| 最終ジャッジ日時 | 2022-12-08 18:30:44 |
| 合計ジャッジ時間 | 945 ms |
|
ジャッジサーバーID (参考情報) |
judge16 / judge14 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | RE * 1 |
ソースコード
import math
print(1e6)
for i in 1e6:
x = int(math.cos(2 * math.pi * i / 1e6) * 9.99e8)
y = int(math.sin(2 * math.pi * i / 1e6) * 9.99e8)
print(x, y)