結果
問題 | No.1178 Can you draw a Circle? |
ユーザー | 小野寺健 |
提出日時 | 2021-11-02 14:37:04 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 127 bytes |
コンパイル時間 | 535 ms |
コンパイル使用メモリ | 7,424 KB |
実行使用メモリ | 12,160 KB |
最終ジャッジ日時 | 2024-10-11 18:16:29 |
合計ジャッジ時間 | 3,686 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 89 ms
12,160 KB |
testcase_02 | AC | 89 ms
12,032 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 89 ms
12,160 KB |
testcase_08 | AC | 88 ms
12,032 KB |
testcase_09 | AC | 87 ms
12,160 KB |
testcase_10 | AC | 89 ms
12,160 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | RE | - |
testcase_16 | WA | - |
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - b Syntax OK
ソースコード
a, b, c, d, e, f = gets.split(" ").map{|s| s.to_i} m = -c / (2*a) n = -d / (2*a) r = Math.sqrt((f-e)/a + m**2 + n**2) puts r