結果

問題 No.98 円を描こう
ユーザー Lo_OTLo_OT
提出日時 2018-03-30 00:32:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 144 ms / 5,000 ms
コード長 1,057 bytes
コンパイル時間 2,545 ms
コンパイル使用メモリ 74,796 KB
実行使用メモリ 54,440 KB
最終ジャッジ日時 2024-06-26 00:09:01
合計ジャッジ時間 4,347 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
53,876 KB
testcase_01 AC 142 ms
53,972 KB
testcase_02 AC 128 ms
54,440 KB
testcase_03 AC 139 ms
54,076 KB
testcase_04 AC 144 ms
54,132 KB
testcase_05 AC 142 ms
54,052 KB
testcase_06 AC 143 ms
53,924 KB
testcase_07 AC 142 ms
54,432 KB
testcase_08 AC 141 ms
54,120 KB
testcase_09 AC 141 ms
53,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.OutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.PrintWriter;
import java.util.Scanner;

/**
 * Built using CHelper plug-in
 * Actual solution is at the top
 */
public class Main {
    public static void main(String[] args) {
        InputStream inputStream = System.in;
        OutputStream outputStream = System.out;
        Scanner in = new Scanner(inputStream);
        PrintWriter out = new PrintWriter(outputStream);
        Yukicoder solver = new Yukicoder();
        solver.solve(1, in, out);
        out.close();
    }

    static class Yukicoder {
        public void solve(int testNumber, Scanner in, PrintWriter out) {
            int x = in.nextInt();
            int y = in.nextInt();
            double radius = Math.sqrt(Math.pow(x, 2) + Math.pow(y, 2)) * 2;

            int ans;
            for (int i = 0; ; i++) {
                if (radius < i) {
                    ans = i;
                    break;
                }
            }
            out.println(ans);
        }

    }
}

0