結果
問題 | No.365 ジェンガソート |
ユーザー | ccppjsrb |
提出日時 | 2020-05-25 20:16:05 |
言語 | Go (1.22.1) |
結果 |
AC
|
実行時間 | 26 ms / 2,000 ms |
コード長 | 1,918 bytes |
コンパイル時間 | 11,814 ms |
コンパイル使用メモリ | 232,664 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-13 02:11:04 |
合計ジャッジ時間 | 13,456 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,820 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 1 ms
6,816 KB |
testcase_05 | AC | 1 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 1 ms
6,816 KB |
testcase_09 | AC | 1 ms
6,816 KB |
testcase_10 | AC | 1 ms
6,820 KB |
testcase_11 | AC | 2 ms
6,816 KB |
testcase_12 | AC | 2 ms
6,820 KB |
testcase_13 | AC | 2 ms
6,820 KB |
testcase_14 | AC | 1 ms
6,816 KB |
testcase_15 | AC | 2 ms
6,820 KB |
testcase_16 | AC | 22 ms
6,816 KB |
testcase_17 | AC | 22 ms
5,248 KB |
testcase_18 | AC | 3 ms
5,248 KB |
testcase_19 | AC | 20 ms
5,248 KB |
testcase_20 | AC | 8 ms
5,248 KB |
testcase_21 | AC | 6 ms
5,248 KB |
testcase_22 | AC | 20 ms
5,248 KB |
testcase_23 | AC | 12 ms
5,248 KB |
testcase_24 | AC | 18 ms
5,248 KB |
testcase_25 | AC | 6 ms
5,248 KB |
testcase_26 | AC | 15 ms
5,248 KB |
testcase_27 | AC | 25 ms
5,248 KB |
testcase_28 | AC | 15 ms
5,248 KB |
testcase_29 | AC | 22 ms
5,248 KB |
testcase_30 | AC | 16 ms
5,248 KB |
testcase_31 | AC | 8 ms
5,248 KB |
testcase_32 | AC | 7 ms
5,248 KB |
testcase_33 | AC | 26 ms
5,248 KB |
testcase_34 | AC | 5 ms
5,248 KB |
testcase_35 | AC | 19 ms
5,248 KB |
testcase_36 | AC | 8 ms
5,248 KB |
testcase_37 | AC | 8 ms
5,248 KB |
testcase_38 | AC | 26 ms
5,248 KB |
testcase_39 | AC | 11 ms
5,248 KB |
testcase_40 | AC | 17 ms
5,248 KB |
ソースコード
package main import ( "bufio" "fmt" "os" "sort" "strconv" ) func getScanner(fp *os.File) *bufio.Scanner { scanner := bufio.NewScanner(fp) scanner.Split(bufio.ScanWords) scanner.Buffer(make([]byte, 1000005), 1000005) return scanner } func getNextString(scanner *bufio.Scanner) string { scanner.Scan() return scanner.Text() } func getNextInt(scanner *bufio.Scanner) int { i, _ := strconv.Atoi(getNextString(scanner)) return i } func getNextInt64(scanner *bufio.Scanner) int64 { i, _ := strconv.ParseInt(getNextString(scanner), 10, 64) return i } func getNextUint64(scanner *bufio.Scanner) uint64 { i, _ := strconv.ParseUint(getNextString(scanner), 10, 64) return i } func getNextFloat64(scanner *bufio.Scanner) float64 { i, _ := strconv.ParseFloat(getNextString(scanner), 64) return i } func main() { fp := os.Stdin wfp := os.Stdout cnt := 0 if os.Getenv("MASPY") == "ますピ" { fp, _ = os.Open(os.Getenv("BEET_THE_HARMONY_OF_PERFECT")) cnt = 2 } if os.Getenv("MASPYPY") == "ますピッピ" { wfp, _ = os.Create(os.Getenv("NGTKANA_IS_GENIUS10")) } scanner := getScanner(fp) writer := bufio.NewWriter(wfp) solve(scanner, writer) for i := 0; i < cnt; i++ { fmt.Fprintln(writer, "-----------------------------------") solve(scanner, writer) } writer.Flush() } func solve(scanner *bufio.Scanner, writer *bufio.Writer) { n := getNextInt(scanner) pp := make(pairs, n) for i := 0; i < n; i++ { a := getNextInt(scanner) - 1 pp[i] = newPair(a, i) } sort.Sort(pp) ans := n - 1 for i := n - 2; i >= 0; i-- { if pp[i][1] < pp[i+1][1] { ans-- continue } break } fmt.Fprintln(writer, ans) } func newPair(a, b int) pair { return pair{a, b} } type pair [2]int type pairs []pair func (a pairs) Len() int { return len(a) } func (a pairs) Swap(i, j int) { a[i], a[j] = a[j], a[i] } func (a pairs) Less(i, j int) bool { return a[i][0] < a[j][0] }