結果

問題 No.2590 100000 Days of Christmas
ユーザー ID 21712ID 21712
提出日時 2024-11-11 22:18:21
言語 Go
(1.22.1)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 705 bytes
コンパイル時間 13,601 ms
コンパイル使用メモリ 228,912 KB
実行使用メモリ 12,672 KB
最終ジャッジ日時 2024-11-11 22:18:39
合計ジャッジ時間 16,301 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 1 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 73 ms
12,288 KB
testcase_07 AC 29 ms
5,248 KB
testcase_08 AC 113 ms
12,672 KB
testcase_09 AC 28 ms
5,248 KB
testcase_10 AC 1 ms
5,248 KB
testcase_11 AC 1 ms
5,248 KB
testcase_12 AC 1 ms
5,248 KB
testcase_13 AC 1 ms
5,248 KB
testcase_14 AC 1 ms
5,248 KB
testcase_15 AC 1 ms
5,248 KB
testcase_16 AC 1 ms
5,248 KB
testcase_17 AC 1 ms
5,248 KB
testcase_18 AC 1 ms
5,248 KB
testcase_19 AC 1 ms
5,248 KB
testcase_20 AC 113 ms
12,672 KB
testcase_21 AC 112 ms
12,672 KB
testcase_22 AC 105 ms
12,288 KB
testcase_23 AC 111 ms
12,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import . "fmt"
import . "os"
import bf "bufio"
import . "slices"

func main() {
	rd:=bf.NewReader(Stdin)
	wr:=bf.NewWriter(Stdout)
	var line = new(Line)
	Fscan(rd,line)
	var n int
	Sscan(line.s,&n)
	m:=make(map[string]int64)
	p:=make([]string,n)
	for i:=range p {
		Fscan(rd,line)
		c:=int64(i+1)*int64(n-i)
		p[i]=line.s
		m[line.s]+=c
	}
	Sort(p)
	p=Compact(p)
	for _,s:=range p {
		Fprintln(wr,m[s],s)
	}
	wr.Flush()
}


type Line struct {
	s string
}

func (l *Line) Scan(st ScanState, verb rune) error {
	token, _ := st.Token(false, func(r rune) bool {
		return r != '\n'
	})
	l.s = string(token)
	_, _, err := st.ReadRune()
	return err
}

func (l *Line) String() string {
	return l.s
}
0