結果

問題 No.2590 100000 Days of Christmas
ユーザー ID 21712ID 21712
提出日時 2024-11-11 22:23:41
言語 Go
(1.22.1)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 414 bytes
コンパイル時間 19,329 ms
コンパイル使用メモリ 231,936 KB
実行使用メモリ 12,672 KB
最終ジャッジ日時 2024-11-11 22:24:09
合計ジャッジ時間 16,072 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 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 74 ms
12,288 KB
testcase_07 AC 11 ms
5,248 KB
testcase_08 AC 117 ms
12,672 KB
testcase_09 AC 13 ms
5,248 KB
testcase_10 AC 1 ms
5,248 KB
testcase_11 AC 2 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 2 ms
5,248 KB
testcase_18 AC 1 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 117 ms
12,544 KB
testcase_21 AC 113 ms
12,672 KB
testcase_22 AC 114 ms
12,288 KB
testcase_23 AC 114 ms
12,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

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

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

0