結果
問題 | No.98 円を描こう |
ユーザー | nonokai10 |
提出日時 | 2018-03-11 00:51:56 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 90 bytes |
コンパイル時間 | 98 ms |
コンパイル使用メモリ | 7,296 KB |
実行使用メモリ | 12,544 KB |
最終ジャッジ日時 | 2024-10-15 00:00:40 |
合計ジャッジ時間 | 1,819 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 90 ms
12,160 KB |
testcase_03 | WA | - |
testcase_04 | AC | 95 ms
12,544 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 89 ms
12,544 KB |
testcase_08 | AC | 90 ms
12,416 KB |
testcase_09 | WA | - |
コンパイルメッセージ
Syntax OK
ソースコード
x, y = gets.split.map(&:to_i) d = (x ** 2 + y ** 2) ** 0.5 p (e=d.ceil) == d ? d*2+1 : e*2