結果
問題 | No.1282 Display Elements |
ユーザー | c-yan |
提出日時 | 2020-11-10 13:36:32 |
言語 | Go (1.22.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,272 bytes |
コンパイル時間 | 10,187 ms |
コンパイル使用メモリ | 231,744 KB |
実行使用メモリ | 12,252 KB |
最終ジャッジ日時 | 2024-07-22 17:29:29 |
合計ジャッジ時間 | 17,643 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
12,252 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 1 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 1 ms
5,376 KB |
testcase_15 | AC | 1,657 ms
5,376 KB |
testcase_16 | AC | 274 ms
5,376 KB |
testcase_17 | AC | 1,128 ms
5,376 KB |
testcase_18 | AC | 445 ms
5,376 KB |
testcase_19 | TLE | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
ソースコード
package main import ( "bufio" "fmt" "os" "sort" "strconv" ) func appendSorted(a []int, b int) []int { i := sort.Search(len(a), func(i int) bool { return a[i] >= b }) a = append(a, 0) for j := len(a) - 1; j > i; j-- { a[j] = a[j-1] } a[i] = b return a } func main() { defer flush() N := readInt() a := make([]int, N) for i := 0; i < N; i++ { a[i] = readInt() } b := make([]int, N) for i := 0; i < N; i++ { b[i] = readInt() } sort.Ints(a) t := make([]int, 0, N) result := 0 for i := 0; i < N; i++ { t = appendSorted(t, b[i]) result += sort.Search(len(t), func(j int) bool { return t[j] >= a[i] }) } println(result) } const ( ioBufferSize = 1 * 1024 * 1024 // 1 MB ) var stdinScanner = func() *bufio.Scanner { result := bufio.NewScanner(os.Stdin) result.Buffer(make([]byte, ioBufferSize), ioBufferSize) result.Split(bufio.ScanWords) return result }() func readString() string { stdinScanner.Scan() return stdinScanner.Text() } func readInt() int { result, err := strconv.Atoi(readString()) if err != nil { panic(err) } return result } var stdoutWriter = bufio.NewWriter(os.Stdout) func flush() { stdoutWriter.Flush() } func println(args ...interface{}) (int, error) { return fmt.Fprintln(stdoutWriter, args...) }