結果
問題 | No.1004 サイコロの実装 (2) |
ユーザー |
![]() |
提出日時 | 2022-11-23 03:29:03 |
言語 | Go (1.23.4) |
結果 |
WA
|
実行時間 | - |
コード長 | 810 bytes |
コンパイル時間 | 12,889 ms |
コンパイル使用メモリ | 235,548 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-24 08:33:56 |
合計ジャッジ時間 | 12,321 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 24 WA * 14 |
ソースコード
package mainimport ("bufio""fmt""math""os""strconv")var scanner *bufio.Scannerfunc main() {Int()Int()Int()n := Int()fmt.Printf("0 %d\n", n/2)}func init() {scanner = bufio.NewScanner(os.Stdin)scanner.Buffer([]byte{}, math.MaxInt64)scanner.Split(bufio.ScanWords)}func Int() int {scanner.Scan()ret, _ := strconv.ParseInt(scanner.Text(), 10, 0)return int(ret)}func Ints(n int) []int {ret := make([]int, n)for i := 0; i < n; i++ {ret[i] = Int()}return ret}type Number interface {~int | ~int8 | ~int16 | ~int32 | ~int64 | ~float32 | ~float64}func Max[T Number](a, b T) T {if a < b {return b}return a}func Min[T Number](a, b T) T {if a < b {return a}return b}func Abs[T Number](a T) T {if a < 0 {return -a}return a}