結果

問題 No.455 冬の大三角
ユーザー pekempeypekempey
提出日時 2017-01-27 19:48:56
言語 F#
(F# 4.0)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 798 bytes
コンパイル時間 12,255 ms
コンパイル使用メモリ 185,920 KB
実行使用メモリ 32,736 KB
最終ジャッジ日時 2024-06-29 22:44:04
合計ジャッジ時間 15,472 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
30,464 KB
testcase_01 AC 54 ms
30,208 KB
testcase_02 AC 54 ms
30,464 KB
testcase_03 AC 56 ms
30,208 KB
testcase_04 AC 55 ms
30,464 KB
testcase_05 AC 54 ms
30,208 KB
testcase_06 AC 55 ms
30,432 KB
testcase_07 AC 54 ms
30,404 KB
testcase_08 AC 60 ms
32,736 KB
testcase_09 AC 57 ms
30,208 KB
testcase_10 AC 56 ms
30,336 KB
testcase_11 AC 56 ms
30,304 KB
testcase_12 AC 57 ms
30,464 KB
testcase_13 AC 56 ms
30,592 KB
testcase_14 AC 55 ms
30,080 KB
testcase_15 AC 54 ms
30,336 KB
testcase_16 AC 57 ms
30,208 KB
testcase_17 AC 52 ms
30,464 KB
testcase_18 AC 52 ms
30,464 KB
testcase_19 AC 52 ms
30,336 KB
testcase_20 AC 53 ms
30,328 KB
testcase_21 AC 54 ms
30,464 KB
testcase_22 AC 53 ms
30,208 KB
testcase_23 AC 53 ms
30,208 KB
testcase_24 AC 52 ms
30,464 KB
testcase_25 AC 52 ms
30,296 KB
testcase_26 AC 55 ms
30,464 KB
testcase_27 AC 55 ms
30,336 KB
testcase_28 AC 54 ms
30,464 KB
testcase_29 AC 56 ms
31,616 KB
testcase_30 AC 55 ms
30,848 KB
testcase_31 AC 53 ms
30,976 KB
testcase_32 AC 53 ms
30,720 KB
testcase_33 AC 55 ms
31,968 KB
testcase_34 AC 52 ms
30,336 KB
testcase_35 AC 56 ms
31,104 KB
testcase_36 AC 55 ms
31,104 KB
testcase_37 AC 64 ms
30,848 KB
testcase_38 AC 59 ms
30,720 KB
testcase_39 AC 59 ms
31,744 KB
testcase_40 AC 56 ms
30,976 KB
testcase_41 AC 57 ms
30,976 KB
testcase_42 AC 57 ms
30,592 KB
testcase_43 AC 53 ms
30,592 KB
testcase_44 AC 53 ms
30,592 KB
testcase_45 AC 54 ms
31,576 KB
testcase_46 AC 53 ms
30,976 KB
testcase_47 AC 53 ms
30,848 KB
testcase_48 AC 53 ms
30,816 KB
testcase_49 AC 53 ms
30,456 KB
testcase_50 AC 52 ms
30,464 KB
testcase_51 AC 58 ms
30,432 KB
testcase_52 AC 56 ms
30,336 KB
testcase_53 AC 55 ms
30,336 KB
testcase_54 AC 57 ms
30,208 KB
testcase_55 AC 56 ms
30,464 KB
testcase_56 AC 54 ms
30,208 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (519 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

let findPos (S : (char array) array) H W = 
    [for i in 0 .. H - 1 do for j in 0 .. W - 1 -> (i, j)]
    |> List.filter (fun (y, x) -> S.[y].[x] = '*')

let cross y1 x1 y2 x2 = y1 * x2 - y2 * x1

let isParallel y1 x1 y2 x2 y3 x3 = cross (y2 - y1) (x2 - x1) (y3 - y1) (x3 - x1) = 0
                
let H, W = System.Console.ReadLine().Split() |> Array.map int |> fun a -> a.[0], a.[1]
let S = [|for i in 1 .. H -> System.Console.ReadLine().ToCharArray()|]

let (y1, x1), (y2, x2) = findPos S H W |> Array.ofList |> fun a -> a.[0], a.[1]
let y3, x3 =
    [for i in 0 .. H - 1 do for j in 0 .. W - 1 -> (i, j)]
    |> List.filter (fun (y, x) -> not (isParallel y x y1 x1 y2 x2))
    |> List.head

S.[y3].[x3] <- '*'

S |> Array.iter (fun s -> s |> System.String.Concat |> System.Console.WriteLine)
0