結果
問題 | No.531 エヌスクミ島の平和協定 |
ユーザー |
![]() |
提出日時 | 2022-11-23 02:43:39 |
言語 | Go (1.23.4) |
結果 |
WA
|
実行時間 | - |
コード長 | 832 bytes |
コンパイル時間 | 13,451 ms |
コンパイル使用メモリ | 244,272 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-24 07:41:40 |
合計ジャッジ時間 | 12,293 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 33 WA * 4 |
ソースコード
package mainimport ("bufio""fmt""math""os""strconv")var scanner *bufio.Scannerfunc main() {n, m := Int(), Int()if n > m {fmt.Println(-1)} else {fmt.Println(1)}}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}