結果

問題 No.98 円を描こう
ユーザー yuki2006yuki2006
提出日時 2015-02-23 15:21:55
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 77 ms / 5,000 ms
コード長 106 bytes
コンパイル時間 120 ms
コンパイル使用メモリ 76,824 KB
実行使用メモリ 75,708 KB
最終ジャッジ日時 2024-06-23 21:55:51
合計ジャッジ時間 1,523 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
75,436 KB
testcase_01 AC 74 ms
75,652 KB
testcase_02 AC 74 ms
75,568 KB
testcase_03 AC 75 ms
75,552 KB
testcase_04 AC 75 ms
75,564 KB
testcase_05 AC 74 ms
75,536 KB
testcase_06 AC 75 ms
75,268 KB
testcase_07 AC 75 ms
75,708 KB
testcase_08 AC 73 ms
75,544 KB
testcase_09 AC 76 ms
75,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

Xp, Yp = map(int, raw_input().split())

A = math.sqrt(Xp ** 2 + Yp ** 2)
print int(2 * A + 1)
0