結果

問題 No.1464 Number Conversion
ユーザー simansiman
提出日時 2021-04-06 03:08:11
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 128 bytes
コンパイル時間 71 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-06-10 15:46:32
合計ジャッジ時間 3,748 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
12,032 KB
testcase_01 AC 75 ms
12,160 KB
testcase_02 WA -
testcase_03 AC 73 ms
12,032 KB
testcase_04 AC 74 ms
12,160 KB
testcase_05 AC 74 ms
12,032 KB
testcase_06 AC 73 ms
12,160 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 79 ms
11,904 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 78 ms
12,160 KB
testcase_28 AC 77 ms
11,904 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

X = gets.chomp
A, B = X.split('.')

if B
  C = (A + B).to_i
  puts Rational(C, 10 * B.size)
else
  puts Rational(A.to_i, 1)
end
0