結果

問題 No.98 円を描こう
ユーザー Lo_OTLo_OT
提出日時 2018-03-30 00:29:16
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 901 bytes
コンパイル時間 3,667 ms
コンパイル使用メモリ 70,864 KB
実行使用メモリ 55,948 KB
最終ジャッジ日時 2023-09-08 06:52:34
合計ジャッジ時間 4,181 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
55,948 KB
testcase_01 AC 126 ms
55,484 KB
testcase_02 AC 126 ms
55,400 KB
testcase_03 AC 129 ms
55,560 KB
testcase_04 WA -
testcase_05 AC 128 ms
55,944 KB
testcase_06 AC 127 ms
55,488 KB
testcase_07 AC 130 ms
55,640 KB
testcase_08 AC 129 ms
55,420 KB
testcase_09 WA -
権限があれば一括ダウンロードができます

ソースコード

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;
            out.println((int) Math.ceil(radius + 0.5));
        }
    }
}

0