結果

問題 No.98 円を描こう
ユーザー akanayaakanaya
提出日時 2020-03-26 11:00:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 461 ms / 5,000 ms
コード長 272 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,300 KB
最終ジャッジ日時 2024-06-10 12:13:45
合計ジャッジ時間 7,027 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 457 ms
44,164 KB
testcase_01 AC 450 ms
44,040 KB
testcase_02 AC 448 ms
44,164 KB
testcase_03 AC 449 ms
44,040 KB
testcase_04 AC 437 ms
44,168 KB
testcase_05 AC 445 ms
44,288 KB
testcase_06 AC 440 ms
44,292 KB
testcase_07 AC 442 ms
44,300 KB
testcase_08 AC 461 ms
44,288 KB
testcase_09 AC 445 ms
44,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
import numpy as np
from collections import deque
from collections import Counter
import sys 

input = sys.stdin.readline
# sys.setrecursionlimit(25000)

x, y = list(map(int, input().split(' ')))

d = math.sqrt(x ** 2 + y ** 2) * 2

print(math.floor(d) + 1)



0