結果

問題 No.169 何分かかるの!?
ユーザー gray
提出日時 2015-03-28 20:12:50
言語 Go
(1.23.4)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 209 bytes
コンパイル時間 11,867 ms
コンパイル使用メモリ 222,484 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-10 03:32:44
合計ジャッジ時間 12,710 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 21 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"fmt"
	"math"
)

func main() {
	var per, min int
	fmt.Scanf("%d", &per)
	fmt.Scanf("%d", &min)
	t := float64(100) / float64(100 - per) * float64(min)
	fmt.Println(int(math.Floor(t)))
}
0