結果

問題 No.379 五円硬貨
ユーザー Takuya NoguchiTakuya Noguchi
提出日時 2018-03-18 19:22:45
言語 Ruby
(3.2.2)
結果
AC  
実行時間 77 ms / 1,000 ms
コード長 57 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 11,504 KB
実行使用メモリ 15,316 KB
最終ジャッジ日時 2023-08-28 14:56:24
合計ジャッジ時間 2,913 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
15,248 KB
testcase_01 AC 76 ms
15,228 KB
testcase_02 AC 77 ms
15,128 KB
testcase_03 AC 76 ms
15,212 KB
testcase_04 AC 76 ms
15,104 KB
testcase_05 AC 75 ms
15,224 KB
testcase_06 AC 76 ms
15,076 KB
testcase_07 AC 75 ms
15,088 KB
testcase_08 AC 75 ms
15,308 KB
testcase_09 AC 75 ms
15,248 KB
testcase_10 AC 76 ms
15,184 KB
testcase_11 AC 76 ms
15,316 KB
testcase_12 AC 75 ms
15,128 KB
testcase_13 AC 76 ms
15,216 KB
testcase_14 AC 76 ms
15,136 KB
testcase_15 AC 77 ms
14,996 KB
testcase_16 AC 76 ms
15,132 KB
testcase_17 AC 77 ms
15,244 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, G, V = gets.split.map(&:to_i)

puts N / 5 * G / V.to_f
0