結果

問題 No.419 直角三角形
ユーザー mmmpppmmmppp
提出日時 2016-09-26 11:41:44
言語 Ruby
(3.3.0)
結果
AC  
実行時間 88 ms / 1,000 ms
コード長 67 bytes
コンパイル時間 69 ms
コンパイル使用メモリ 11,328 KB
実行使用メモリ 15,704 KB
最終ジャッジ日時 2023-08-11 21:12:46
合計ジャッジ時間 2,926 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
15,424 KB
testcase_01 AC 75 ms
15,704 KB
testcase_02 AC 78 ms
15,516 KB
testcase_03 AC 79 ms
15,588 KB
testcase_04 AC 79 ms
15,652 KB
testcase_05 AC 80 ms
15,596 KB
testcase_06 AC 78 ms
15,500 KB
testcase_07 AC 78 ms
15,620 KB
testcase_08 AC 79 ms
15,664 KB
testcase_09 AC 78 ms
15,440 KB
testcase_10 AC 77 ms
15,500 KB
testcase_11 AC 77 ms
15,524 KB
testcase_12 AC 79 ms
15,544 KB
testcase_13 AC 79 ms
15,664 KB
testcase_14 AC 77 ms
15,432 KB
testcase_15 AC 78 ms
15,476 KB
testcase_16 AC 79 ms
15,628 KB
testcase_17 AC 78 ms
15,496 KB
testcase_18 AC 77 ms
15,604 KB
testcase_19 AC 81 ms
15,548 KB
testcase_20 AC 78 ms
15,524 KB
testcase_21 AC 80 ms
15,600 KB
testcase_22 AC 79 ms
15,568 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

a,b=gets.split.map{|i|i.to_i**2}.sort
p a==b ?(a+b)**0.5:(b-a)**0.5
0