結果

問題 No.57 ミリオンダイス
ユーザー deruiderui
提出日時 2016-07-16 18:01:09
言語 Go
(1.23.4)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 176 bytes
コンパイル時間 13,182 ms
コンパイル使用メモリ 234,000 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-14 06:10:34
合計ジャッジ時間 10,939 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 9
権限があれば一括ダウンロードができます

ソースコード

diff #

package main
import "fmt"

func main() {
	var dices int
	fmt.Scanf("%dd", &dices)

	fmt.Println(solve(dices))
}

func solve(dices int) float32 {
	return float32(dices) * 3.5
}
0