結果

問題 No.858 わり算
ユーザー yamaghyamagh
提出日時 2019-08-18 23:37:26
言語 Ruby
(3.4.1)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 117 bytes
コンパイル時間 1,087 ms
コンパイル使用メモリ 8,064 KB
実行使用メモリ 13,056 KB
最終ジャッジ日時 2025-01-05 14:03:59
合計ジャッジ時間 3,460 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
13,056 KB
testcase_01 AC 75 ms
12,928 KB
testcase_02 AC 77 ms
12,928 KB
testcase_03 AC 74 ms
13,056 KB
testcase_04 AC 77 ms
12,800 KB
testcase_05 AC 75 ms
13,056 KB
testcase_06 AC 77 ms
12,800 KB
testcase_07 AC 76 ms
12,928 KB
testcase_08 AC 77 ms
12,928 KB
testcase_09 AC 77 ms
12,672 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

a,b=gets.split.map(&:to_f)
51.times do |n|
  print (a/b).to_i
  print '.' if n==0
  a=((a%b)*10).to_i
end
print "\n"
0