結果

問題 No.98 円を描こう
ユーザー yaoshimaxyaoshimax
提出日時 2015-03-09 22:42:39
言語 Python2
(2.7.18)
結果
AC  
実行時間 18 ms / 5,000 ms
コード長 113 bytes
コンパイル時間 766 ms
コンパイル使用メモリ 6,636 KB
実行使用メモリ 7,332 KB
最終ジャッジ日時 2023-09-06 22:47:34
合計ジャッジ時間 1,529 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
7,332 KB
testcase_01 AC 13 ms
7,256 KB
testcase_02 AC 13 ms
7,332 KB
testcase_03 AC 13 ms
7,296 KB
testcase_04 AC 12 ms
7,324 KB
testcase_05 AC 12 ms
7,216 KB
testcase_06 AC 16 ms
7,300 KB
testcase_07 AC 15 ms
7,216 KB
testcase_08 AC 18 ms
7,216 KB
testcase_09 AC 17 ms
7,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

X,Y=map(int,raw_input().split())
for i in range(50000):
    if i*i > 4*(X*X+Y*Y):
        print i
        exit()
0