結果
問題 | No.455 冬の大三角 |
ユーザー | ccppjsrb |
提出日時 | 2020-07-17 09:52:30 |
言語 | Go (1.22.1) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,393 bytes |
コンパイル時間 | 12,067 ms |
コンパイル使用メモリ | 220,848 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-05-05 18:47:55 |
合計ジャッジ時間 | 15,971 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
10,624 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
testcase_55 | -- | - |
testcase_56 | -- | - |
ソースコード
package main import ( "bufio" "fmt" "os" "strconv" "strings" ) func configure(scanner *bufio.Scanner) { scanner.Split(bufio.ScanWords) scanner.Buffer(make([]byte, 1000005), 1000005) } func getNextString(scanner *bufio.Scanner) string { scanned := scanner.Scan() if !scanned { panic("scan failed") } 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 getNextFloat64(scanner *bufio.Scanner) float64 { i, _ := strconv.ParseFloat(getNextString(scanner), 64) return i } func main() { fp := os.Stdin wfp := os.Stdout extra := 0 if os.Getenv("I") == "IronMan" { fp, _ = os.Open(os.Getenv("END_GAME")) extra = 100 } scanner := bufio.NewScanner(fp) configure(scanner) writer := bufio.NewWriter(wfp) defer func() { r := recover() if r != nil { fmt.Fprintln(writer, r) } writer.Flush() }() solve(scanner, writer) for i := 0; i < extra; i++ { fmt.Fprintln(writer, "-----------------------------------") solve(scanner, writer) } } func solve(scanner *bufio.Scanner, writer *bufio.Writer) { h := getNextInt(scanner) w := getNextInt(scanner) ss := make([][]string, h) for i := 0; i < h; i++ { ss[i] = strings.Split(getNextString(scanner), "") } star := make([][2]int, 0) for i := 0; i < h; i++ { for j := 0; j < w; j++ { if ss[i][j] == "*" { star = append(star, [2]int{i, j}) } } } g := gcd(star[1][0]-star[0][0], star[1][1]-star[0][1]) y := (star[1][0] - star[0][0]) / g x := (star[1][1] - star[0][1]) / g disable := makeGrid(h, w) for i, j := star[0][0], star[0][1]; i < h; i += y { if j >= 0 && j < w { disable[i][j] = true } j += x } for i, j := star[0][0], star[0][1]; i >= 0; i -= y { if j >= 0 && j < w { disable[i][j] = true } j -= x } for i := 0; i < h; i++ { for j := 0; j < w; j++ { if disable[i][j] { continue } ss[i][j] = "*" for k := 0; k < h; k++ { fmt.Fprintln(writer, strings.Join(ss[k], "")) } return } } } func makeGrid(h, w int) [][]bool { index := make([][]bool, h, h) data := make([]bool, h*w, h*w) for i := 0; i < h; i++ { index[i] = data[i*w : (i+1)*w] } return index } func gcd(m, n int) int { if n == 0 { return m } return gcd(n, m%n) }