結果

問題 No.216 FAC
ユーザー はむ吉🐹はむ吉🐹
提出日時 2015-10-24 14:00:21
言語 Haskell
(9.8.2)
結果
WA  
実行時間 -
コード長 464 bytes
コンパイル時間 4,908 ms
コンパイル使用メモリ 166,708 KB
実行使用メモリ 8,236 KB
最終ジャッジ日時 2023-10-11 05:37:26
合計ジャッジ時間 3,086 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,244 KB
testcase_01 AC 2 ms
7,292 KB
testcase_02 AC 3 ms
7,320 KB
testcase_03 AC 3 ms
7,972 KB
testcase_04 AC 3 ms
7,572 KB
testcase_05 AC 3 ms
7,524 KB
testcase_06 AC 2 ms
7,188 KB
testcase_07 AC 3 ms
7,132 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 3 ms
7,148 KB
testcase_12 WA -
testcase_13 AC 3 ms
7,320 KB
testcase_14 WA -
testcase_15 AC 3 ms
7,224 KB
testcase_16 AC 4 ms
8,128 KB
testcase_17 AC 4 ms
8,164 KB
testcase_18 WA -
testcase_19 AC 4 ms
8,172 KB
testcase_20 WA -
testcase_21 AC 4 ms
8,236 KB
testcase_22 AC 4 ms
8,156 KB
testcase_23 AC 3 ms
8,136 KB
testcase_24 WA -
testcase_25 AC 4 ms
8,112 KB
testcase_26 AC 3 ms
7,216 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Loaded package environment from /home/judge/.ghc/x86_64-linux-9.6.1/environments/default
[1 of 2] Compiling Main             ( Main.hs, Main.o )
[2 of 2] Linking a.out

ソースコード

diff #

import Data.Array.Unboxed (accumArray, elems, UArray)
import Data.List (transpose)

judge :: Int -> [[Int]] -> String
judge m xs
    | head ss >= (sum $ tail ss) = "YES"
    | otherwise                  = "NO"
    where
        ar = accumArray (+) 0 (0, m) $ map (\(b : a : _) -> (b, a)) xs :: UArray Int Int
        ss = elems ar

main :: IO ()
main = getLine >> getContents >>= putStrLn . judge 100 .
    transpose . map (map read) . map words . reverse . lines
0