結果

問題 No.98 円を描こう
ユーザー utsumidaisukeutsumidaisuke
提出日時 2018-12-13 12:22:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 503 ms / 5,000 ms
コード長 144 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,248 KB
最終ジャッジ日時 2024-09-25 04:25:20
合計ジャッジ時間 7,186 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 503 ms
44,200 KB
testcase_01 AC 501 ms
43,836 KB
testcase_02 AC 502 ms
43,832 KB
testcase_03 AC 501 ms
44,080 KB
testcase_04 AC 503 ms
44,248 KB
testcase_05 AC 500 ms
44,092 KB
testcase_06 AC 501 ms
44,084 KB
testcase_07 AC 500 ms
43,956 KB
testcase_08 AC 496 ms
44,232 KB
testcase_09 AC 496 ms
44,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

x, y = map(int,input().split())
r = np.sqrt(x**2+y**2)
if 2*r == int(2*r):
    print(int(2*r+1))
else:
    print(int(2*r)+1)
0