結果

問題 No.350 d=vt
ユーザー wonda_t_coffeewonda_t_coffee
提出日時 2020-02-03 23:41:49
言語 Ruby
(3.2.1 )
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 89 bytes
コンパイル時間 79 ms
コンパイル使用メモリ 11,568 KB
実行使用メモリ 15,424 KB
最終ジャッジ日時 2023-07-19 12:59:30
合計ジャッジ時間 2,460 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
15,292 KB
testcase_01 AC 84 ms
15,208 KB
testcase_02 AC 84 ms
15,164 KB
testcase_03 AC 83 ms
15,256 KB
testcase_04 AC 88 ms
15,368 KB
testcase_05 AC 84 ms
15,288 KB
testcase_06 AC 83 ms
15,288 KB
testcase_07 AC 84 ms
15,420 KB
testcase_08 AC 84 ms
15,160 KB
testcase_09 AC 85 ms
15,164 KB
testcase_10 AC 84 ms
15,252 KB
testcase_11 AC 84 ms
15,424 KB
testcase_12 AC 84 ms
15,424 KB
testcase_13 AC 84 ms
15,252 KB
testcase_14 AC 83 ms
15,256 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

require 'bigdecimal'
v, t = gets.chomp.split.map{|i| BigDecimal(i, 12)}
puts (v * t).to_i
0