結果
| 問題 |
No.5009 Draw A Convex Polygon
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-12-08 18:36:09 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 180 bytes |
| コンパイル時間 | 66 ms |
| 実行使用メモリ | 15,120 KB |
| スコア | 0 |
| 最終ジャッジ日時 | 2022-12-08 18:36:24 |
| 合計ジャッジ時間 | 7,725 ms |
|
ジャッジサーバーID (参考情報) |
judge14 / judge16 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | TLE * 1 |
ソースコード
import math
print(10 ** 6)
for i in range(10 ** 6):
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)