結果

問題 No.419 直角三角形
ユーザー noriocnorioc
提出日時 2016-09-22 15:01:15
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 33 ms / 1,000 ms
コード長 711 bytes
コンパイル時間 719 ms
コンパイル使用メモリ 111,772 KB
実行使用メモリ 28,300 KB
最終ジャッジ日時 2024-11-17 13:08:29
合計ジャッジ時間 2,175 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
28,300 KB
testcase_01 AC 28 ms
28,052 KB
testcase_02 AC 29 ms
25,748 KB
testcase_03 AC 28 ms
25,880 KB
testcase_04 AC 29 ms
26,136 KB
testcase_05 AC 28 ms
26,032 KB
testcase_06 AC 27 ms
26,140 KB
testcase_07 AC 27 ms
26,140 KB
testcase_08 AC 27 ms
27,924 KB
testcase_09 AC 27 ms
28,292 KB
testcase_10 AC 27 ms
25,904 KB
testcase_11 AC 28 ms
28,168 KB
testcase_12 AC 33 ms
25,780 KB
testcase_13 AC 27 ms
26,136 KB
testcase_14 AC 28 ms
26,160 KB
testcase_15 AC 30 ms
28,160 KB
testcase_16 AC 28 ms
23,984 KB
testcase_17 AC 27 ms
28,036 KB
testcase_18 AC 29 ms
28,052 KB
testcase_19 AC 28 ms
26,164 KB
testcase_20 AC 28 ms
26,136 KB
testcase_21 AC 27 ms
28,036 KB
testcase_22 AC 28 ms
25,756 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;

class Program {
    static int ReadInt() { return int.Parse(Console.ReadLine()); }
    static int[] ReadInts() { return Console.ReadLine().Split().Select(int.Parse).ToArray(); }
    static string[] ReadStrings() { return Console.ReadLine().Split(); }

    static double Calc(int a, int b) {
        if (a > b) return Calc(b, a);

        var x = Math.Sqrt(a * a + b * b);
        if (a < b) {
            var y = Math.Sqrt(b * b - a * a);
            return Math.Min(x, y);
        }
        return x;
    }

    static void Main() {
        var ab = ReadInts();
        int a = ab[0], b = ab[1];
        Console.WriteLine(Calc(a, b));
    }
}
0