結果

問題 No.2954 Calculation of Exponentiation
ユーザー torus711torus711
提出日時 2024-11-08 23:20:14
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 293 bytes
コンパイル時間 687 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 84,140 KB
最終ジャッジ日時 2024-11-08 23:20:21
合計ジャッジ時間 6,886 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
17,792 KB
testcase_01 AC 90 ms
12,544 KB
testcase_02 AC 152 ms
13,184 KB
testcase_03 RE -
testcase_04 AC 90 ms
12,416 KB
testcase_05 AC 89 ms
12,544 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 93 ms
12,544 KB
testcase_09 AC 90 ms
12,416 KB
testcase_10 AC 90 ms
12,160 KB
testcase_11 AC 91 ms
12,416 KB
testcase_12 AC 91 ms
12,544 KB
testcase_13 AC 91 ms
12,416 KB
testcase_14 AC 93 ms
12,288 KB
testcase_15 AC 89 ms
12,544 KB
testcase_16 AC 90 ms
12,672 KB
testcase_17 AC 91 ms
12,416 KB
testcase_18 AC 89 ms
12,416 KB
testcase_19 AC 88 ms
12,416 KB
testcase_20 TLE -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

a, b = gets.split
a = a.slice( 0, a.index( ?. ) ) + a.slice( a.index( ?. ) + 1 .. -1 )
b = b.slice( 0, b.index( ?. ) ) + b.slice( b.index( ?. ) + 1 .. -1 )
a = Rational( a, 10000 )
b = Rational( b, 10000 )
res = Rational( a ** b )
if res.denominator == 1 then
  puts "Yes"
else
  puts "No"
end
0