結果

問題 No.893 お客様を誘導せよ
ユーザー ID 21712ID 21712
提出日時 2025-01-01 23:06:38
言語 Go
(1.23.4)
結果
AC  
実行時間 660 ms / 2,000 ms
コード長 404 bytes
コンパイル時間 12,768 ms
コンパイル使用メモリ 246,852 KB
実行使用メモリ 10,096 KB
最終ジャッジ日時 2025-01-01 23:06:54
合計ジャッジ時間 15,550 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 74 ms
6,820 KB
testcase_03 AC 302 ms
8,256 KB
testcase_04 AC 299 ms
8,124 KB
testcase_05 AC 272 ms
8,000 KB
testcase_06 AC 180 ms
8,144 KB
testcase_07 AC 1 ms
6,820 KB
testcase_08 AC 660 ms
10,096 KB
testcase_09 AC 9 ms
6,820 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 4 ms
6,816 KB
testcase_12 AC 10 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import . "fmt"
import . "slices"
import st "strings"

func main() {
	var n int
	Scan(&n)
	ss:=make([][]string,1e2)
	for ;n>0;n-- {
		var p int
		Scan(&p)
		for i:=0;i<p;i++ {
			var a string
			Scan(&a)
			ss[i]=append(ss[i],a)
		}
	}
	ans := []any{}
	for _, s :=range DeleteFunc(ss, func(sa []string) bool { return len(sa)==0 }) {
		ans = append(ans, st.Join(s, " "))
	}
	Println(ans...)
}
0