結果
| 問題 |
No.5009 Draw A Convex Polygon
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-12-02 00:11:03 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 480 bytes |
| コンパイル時間 | 551 ms |
| 実行使用メモリ | 14,576 KB |
| スコア | 0 |
| 最終ジャッジ日時 | 2022-12-02 00:11:18 |
| 合計ジャッジ時間 | 7,734 ms |
|
ジャッジサーバーID (参考情報) |
judge11 / judge12 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | TLE * 1 |
ソースコード
import sys
from collections import deque, Counter
sys.setrecursionlimit(5 * 10 ** 5)
from pypyjit import set_param
set_param('max_unroll_recursion=-1')
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353
import math
n = 10 ** 6
print(n)
for i in range(n):
print(round(10 ** 9 * math.cos(2 * math.pi * i / n)), round(10 ** 9 * math.sin(2 * math.pi * i / n)))