結果

問題 No.59 鉄道の旅
ユーザー 184184
提出日時 2014-11-07 01:26:30
言語 Go
(1.23.4)
結果
TLE  
実行時間 -
コード長 882 bytes
コンパイル時間 13,253 ms
コンパイル使用メモリ 230,620 KB
実行使用メモリ 14,848 KB
最終ジャッジ日時 2024-12-24 20:18:52
合計ジャッジ時間 44,393 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
14,848 KB
testcase_01 AC 4 ms
10,496 KB
testcase_02 AC 6 ms
6,912 KB
testcase_03 AC 21 ms
5,248 KB
testcase_04 TLE -
testcase_05 AC 46 ms
5,248 KB
testcase_06 AC 51 ms
5,248 KB
testcase_07 AC 26 ms
5,248 KB
testcase_08 AC 3,137 ms
9,344 KB
testcase_09 AC 1,099 ms
7,168 KB
testcase_10 AC 2,950 ms
7,424 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 1,887 ms
5,248 KB
testcase_14 AC 3,160 ms
5,248 KB
testcase_15 AC 3 ms
6,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"bufio"
	"fmt"
	"os"
	"strconv"
	"strings"
)

var scanner = bufio.NewScanner(os.Stdin)

func Scan() (input string) {
	if scanner.Scan() {
		input = scanner.Text()
	}
	return
}

func Sign(n int) (int, string) {
	if n >= 0 {
		return n, "+"
	} else {
		ns := []byte(strconv.Itoa(n))
		n, _ := strconv.Atoi(string(ns[1:]))
		return n, "-"
	}
}

func Sum(xs ...int) (s int) {
	for _, x := range xs {
		s += x
	}
	return
}

func main() {
	list := make([]int, 1000001)

	NK := strings.Split(Scan(), " ")
	N, _ := strconv.Atoi(NK[0])
	K, _ := strconv.Atoi(NK[1])

	for i := 0; i < N; i++ {
		W, _ := strconv.Atoi(Scan())
		W, s := Sign(W)

		if s == "+" {
			if Sum(list[W:]...) < K {
				list[W] += 1
			}
		} else if s == "-" {
			if list[W] > 0 {
				list[W] -= 1
			}
		}
	}
	fmt.Println(Sum(list...))
}
0