結果
問題 | No.56 消費税 |
ユーザー | yo-kondo |
提出日時 | 2018-03-04 22:33:35 |
言語 | Go (1.23.4) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 640 bytes |
コンパイル時間 | 14,517 ms |
コンパイル使用メモリ | 234,460 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-16 04:04:25 |
合計ジャッジ時間 | 15,542 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 4 |
other | AC * 23 |
ソースコード
package main import ( "bufio" "fmt" "os" "strconv" "strings" ) func main() { in := bufio.NewScanner(os.Stdin) in.Scan() str := in.Text() fmt.Println(consumptionTax(str)) } // 消費税を加算した価格を返す。 func consumptionTax(str string) string { sp := strings.Split(str, " ") // stringをfloat64に変換する。 // int同士の割り算はint型になり、小数点が切り捨てられるため、小数以下が必要な場合は、事前にfloatに変換する。 price, _ := strconv.ParseFloat(sp[0], 64) tax, _ := strconv.ParseFloat(sp[1], 64) return strconv.Itoa(int(price) + int(price*tax/100)) }