結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
7,680 KB
testcase_01 AC 13 ms
7,808 KB
testcase_02 AC 12 ms
7,936 KB
testcase_03 AC 11 ms
7,808 KB
testcase_04 AC 11 ms
7,936 KB
testcase_05 AC 12 ms
7,936 KB
testcase_06 AC 16 ms
7,936 KB
testcase_07 AC 15 ms
7,936 KB
testcase_08 AC 17 ms
7,936 KB
testcase_09 AC 18 ms
7,808 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