結果
問題 | No.707 書道 |
ユーザー | horiesiniti |
提出日時 | 2018-12-09 16:49:12 |
言語 | Haskell (9.8.2) |
結果 |
WA
|
実行時間 | - |
コード長 | 643 bytes |
コンパイル時間 | 2,121 ms |
コンパイル使用メモリ | 168,192 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-16 09:01:48 |
合計ジャッジ時間 | 2,674 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
5,376 KB |
コンパイルメッセージ
Loaded package environment from /home/judge/.ghc/x86_64-linux-9.8.2/environments/default [1 of 2] Compiling Main ( Main.hs, Main.o ) [2 of 2] Linking a.out
ソースコード
import Data.List import Text.Printf g::Double->Double->String->[(Double,Double)] g _ _ ""=[] g h w ('0':xs)= g h (w+1) xs g h w (_:xs) =(h,w):(g h (w+1) xs) f::Double->[String]->[(Double,Double)] f _ []=[] f h (x:xs)=(g h 1 x) ++ (f (h+1) xs) f2::Double->Double->(Double,Double)->Double f2 h w (y,x)=sqrt((y-h)*(y-h)+(x-w)*(x-w)) main = do e<-getLine es<-getContents let ts=lines es ds=f 1 ts (h:w:[])=map read (words e)::[Int] anss=[sum(map (f2 (fromIntegral y::Double) (fromIntegral(x)::Double)) ds)|y<-[0..h],x<-[0..w],y==0||y==h+1||x==0||x==w+1] printf "%.7f" $ minimum anss