結果

問題 No.863 計算量
ユーザー yumechiyumechi
提出日時 2019-12-30 16:23:19
言語 Ruby
(3.3.0)
結果
AC  
実行時間 92 ms / 1,000 ms
コード長 131 bytes
コンパイル時間 110 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-04-26 04:58:30
合計ジャッジ時間 2,160 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
12,288 KB
testcase_01 AC 92 ms
12,160 KB
testcase_02 AC 83 ms
12,160 KB
testcase_03 AC 82 ms
12,288 KB
testcase_04 AC 81 ms
12,160 KB
testcase_05 AC 81 ms
12,416 KB
testcase_06 AC 80 ms
12,160 KB
testcase_07 AC 82 ms
12,288 KB
testcase_08 AC 83 ms
12,288 KB
testcase_09 AC 82 ms
12,160 KB
testcase_10 AC 82 ms
12,160 KB
testcase_11 AC 81 ms
12,160 KB
testcase_12 AC 82 ms
12,288 KB
testcase_13 AC 82 ms
12,160 KB
testcase_14 AC 81 ms
12,160 KB
testcase_15 AC 81 ms
12,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:5: warning: `**' after local variable or literal is interpreted as binary operator
Main.rb:5: warning: even though it seems like argument prefix
Syntax OK

ソースコード

diff #

a = gets.to_f
b = gets.to_f

p, q = a / 5000, a / (5000**2)
dp, dq = b - p * 200000, b - q * (200000 **2)
p dp.abs < dq.abs ? 1 : 2
0