結果

問題 No.5009 Draw A Convex Polygon
ユーザー ygd.ygd.
提出日時 2022-12-05 21:51:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 120 ms / 2,600 ms
コード長 818 bytes
コンパイル時間 353 ms
実行使用メモリ 90,948 KB
スコア 12
平均クエリ数 13.00
最終ジャッジ日時 2022-12-05 21:52:04
合計ジャッジ時間 1,705 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
純コード判定しない問題か言語
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
90,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#input = sys.stdin.readline
#input = sys.stdin.buffer.readline #文字列はダメ
#sys.setrecursionlimit(1000000)
import math
import bisect
#import itertools
#import random
#from heapq import heapify, heappop, heappush
from collections import defaultdict
from collections import deque
#import copy #DeepCopy: hoge = [_[:] for _ in hogehoge]
#from functools import lru_cache
#@lru_cache(maxsize=None)
#MOD = pow(10,9) + 7
MOD = 998244353
#dx = [1,0,-1,0]
#dy = [0,1,0,-1]
#dx8 = [1,1,0,-1,-1,-1,0,1]
#dy8 = [0,1,1,1,0,-1,-1,-1]

def main():
    print(12)
    print("5 0")
    print("4 3")
    print("3 4")
    print("0 5")
    print("-3 4")
    print("-4 3")
    print("-5 0")
    print("-4 -3")
    print("-3 -4")
    print("0 -5")
    print("3 -4")
    print("4 -3")

if __name__ == '__main__':
    main()
0