結果
| 問題 |
No.5009 Draw A Convex Polygon
|
| コンテスト | |
| ユーザー |
H20
|
| 提出日時 | 2022-12-02 18:15:00 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 198 bytes |
| コンパイル時間 | 270 ms |
| 実行使用メモリ | 14,800 KB |
| スコア | 0 |
| 最終ジャッジ日時 | 2022-12-02 18:15:09 |
| 合計ジャッジ時間 | 8,138 ms |
|
ジャッジサーバーID (参考情報) |
judge13 / judge11 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | TLE * 1 |
ソースコード
import math
N = 10**6-1
print(N,flush=True)
for i in range(N):
x = int(math.cos(math.radians(360*i/N))*10**9+0.5)
y = int(math.sin(math.radians(360*i/N))*10**9+0.5)
print(x,y,flush=True)
H20