結果
問題 | No.1285 ゴミ捨て |
ユーザー | fmhr |
提出日時 | 2020-11-13 21:43:04 |
言語 | Go (1.22.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,664 bytes |
コンパイル時間 | 14,059 ms |
コンパイル使用メモリ | 237,472 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-07-22 20:36:09 |
合計ジャッジ時間 | 14,795 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 21 ms
6,944 KB |
testcase_08 | WA | - |
testcase_09 | AC | 9 ms
6,944 KB |
testcase_10 | AC | 18 ms
6,944 KB |
testcase_11 | AC | 16 ms
6,940 KB |
testcase_12 | AC | 13 ms
6,940 KB |
testcase_13 | AC | 12 ms
6,944 KB |
testcase_14 | AC | 19 ms
6,940 KB |
testcase_15 | AC | 15 ms
6,944 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 8 ms
6,944 KB |
testcase_20 | WA | - |
testcase_21 | AC | 6 ms
6,940 KB |
testcase_22 | AC | 21 ms
6,944 KB |
testcase_23 | AC | 21 ms
6,944 KB |
ソースコード
package main import ( "bufio" "fmt" "log" "math" "os" "sort" "strconv" ) var sc = bufio.NewScanner(os.Stdin) var buff []byte func nextString() string { sc.Scan() return sc.Text() } func nextFloat64() float64 { sc.Scan() f, err := strconv.ParseFloat(sc.Text(), 64) if err != nil { panic(err) } return f } func nextInt() int { sc.Scan() i, err := strconv.Atoi(sc.Text()) if err != nil { panic(err) } return i } func nextInts(n int) (r []int) { r = make([]int, n) for i := 0; i < n; i++ { r[i] = nextInt() } return r } var dy = []int{0, 1, 0, -1} var dx = []int{1, 0, -1, 0} var MAX = math.MaxInt64 func maxInt(a ...int) int { r := a[0] for i := 0; i < len(a); i++ { if r < a[i] { r = a[i] } } return r } func minInt(a ...int) int { r := a[0] for i := 0; i < len(a); i++ { if r > a[i] { r = a[i] } } return r } func sum(a []int) (r int) { for i := range a { r += a[i] } return r } func absInt(a int) int { if a < 0 { return -a } return a } type Pair struct { a, b int } type Pairs []Pair func (p Pairs) Len() int { return len(p) } func (p Pairs) Swap(i, j int) { p[i], p[j] = p[j], p[i] } func (p Pairs) Less(i, j int) bool { if p[i].a == p[j].a { return p[i].b < p[j].b } return p[i].a < p[j].a } func init() { sc.Split(bufio.ScanWords) sc.Buffer(buff, bufio.MaxScanTokenSize*1024) log.SetFlags(log.Lshortfile) } func main() { N := nextInt() A := nextInts(N) sort.Ints(A) ans := 1 for i := 0; i < N-1; i++ { for j := i + 1; j < N; j++ { if i+1 < j { ans = maxInt(ans, j-i) break } else if j == N-1 { ans = maxInt(ans, j-i) } } } fmt.Println(ans) }