結果

問題 No.1009 面積の求め方
ユーザー kcz146kcz146
提出日時 2020-06-17 02:38:34
言語 Ruby
(3.2.2)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 47 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 11,428 KB
実行使用メモリ 15,684 KB
最終ジャッジ日時 2023-09-16 11:16:09
合計ジャッジ時間 3,420 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
15,620 KB
testcase_01 AC 81 ms
15,440 KB
testcase_02 AC 81 ms
15,584 KB
testcase_03 AC 81 ms
15,544 KB
testcase_04 AC 80 ms
15,464 KB
testcase_05 AC 82 ms
15,476 KB
testcase_06 AC 81 ms
15,544 KB
testcase_07 AC 80 ms
15,588 KB
testcase_08 AC 80 ms
15,400 KB
testcase_09 AC 79 ms
15,536 KB
testcase_10 AC 78 ms
15,608 KB
testcase_11 AC 79 ms
15,676 KB
testcase_12 AC 79 ms
15,568 KB
testcase_13 AC 79 ms
15,432 KB
testcase_14 AC 79 ms
15,432 KB
testcase_15 AC 80 ms
15,684 KB
testcase_16 AC 78 ms
15,584 KB
testcase_17 AC 80 ms
15,404 KB
testcase_18 AC 79 ms
15,676 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

a,b=gets.split.map(&:to_f).sort
puts (b-a)**3/6
0