結果

問題 No.98 円を描こう
ユーザー convexineqconvexineq
提出日時 2020-12-03 07:35:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 5,000 ms
コード長 279 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 53,532 KB
最終ジャッジ日時 2024-09-13 15:10:11
合計ジャッジ時間 1,126 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,356 KB
testcase_01 AC 36 ms
52,680 KB
testcase_02 AC 37 ms
52,600 KB
testcase_03 AC 36 ms
52,616 KB
testcase_04 AC 38 ms
52,776 KB
testcase_05 AC 38 ms
53,532 KB
testcase_06 AC 37 ms
51,888 KB
testcase_07 AC 37 ms
53,088 KB
testcase_08 AC 38 ms
53,172 KB
testcase_09 AC 37 ms
52,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!
import sys
read = sys.stdin.read
readline = sys.stdin.readline

x,y = map(int,readline().split())

v = 4*(x*x+y*y)
ng = 0
ok = 10**9
while ok-ng > 1:
    mid = (ok+ng)//2
    if mid**2 > v:
        ok = mid
    else:
        ng = mid
print(ok)

0