結果

問題 No.91 赤、緑、青の石
ユーザー momen999momen999
提出日時 2017-05-01 17:29:27
言語 Haskell
(9.8.2)
結果
WA  
実行時間 -
コード長 386 bytes
コンパイル時間 4,865 ms
コンパイル使用メモリ 172,416 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-14 01:56:59
合計ジャッジ時間 5,893 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 1 ms
6,944 KB
testcase_18 AC 1 ms
6,948 KB
testcase_19 AC 1 ms
6,944 KB
testcase_20 AC 2 ms
6,944 KB
testcase_21 AC 1 ms
6,940 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 2 ms
6,948 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 2 ms
6,944 KB
testcase_31 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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

ソースコード

diff #

import Data.List

rInt :: String -> Int
rInt = read

allStones x y = x * 2 + y

solve xs
    | all (< 3) xs && elem 0 xs = [0,0,0]
    | elem 0 xs = solve $ sort $ elaseZero xs
    | otherwise = xs
    where
        elaseZero [x,y,z] = [1 , y, (z - 2)]

main = do
    stones <- solve . sort . map rInt . words <$> getLine
    print $ foldr allStones (last stones) (init stones) `div` 5
0