結果
問題 |
No.268 ラッピング(Easy)
|
ユーザー |
|
提出日時 | 2017-06-17 12:58:28 |
言語 | Haskell (9.10.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 453 bytes |
コンパイル時間 | 4,412 ms |
コンパイル使用メモリ | 174,208 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-10-01 09:31:40 |
合計ジャッジ時間 | 4,968 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 7 WA * 3 |
コンパイルメッセージ
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
ソースコード
solve :: [Int] -> [Int] -> Int solve ls rby = minimum (iter ls 3) where [red,blue,yellow] = rby iter [x,y,z] i | i == 0 = [] | otherwise = (rRap + bRap + yRap) : iter [y,z,x] (i - 1) where rRap = (y + z) * 2 * red bRap = (x + y) * 2 * blue yRap = (z + x) * 2 * yellow main = do ls <- map read . words <$> getLine rby <- map read . words <$> getLine print $ solve ls rby