結果

問題 No.77 レンガのピラミッド
ユーザー aimyaimy
提出日時 2017-05-03 11:00:44
言語 Haskell
(9.8.2)
結果
AC  
実行時間 2,687 ms / 5,000 ms
コード長 401 bytes
コンパイル時間 5,347 ms
コンパイル使用メモリ 169,856 KB
実行使用メモリ 36,352 KB
最終ジャッジ日時 2024-09-14 07:02:28
合計ジャッジ時間 7,369 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2,687 ms
36,352 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 417 ms
20,068 KB
testcase_09 AC 56 ms
11,008 KB
testcase_10 AC 37 ms
10,496 KB
testcase_11 AC 51 ms
10,496 KB
testcase_12 AC 182 ms
14,852 KB
testcase_13 AC 169 ms
13,824 KB
testcase_14 AC 235 ms
16,776 KB
testcase_15 AC 40 ms
10,624 KB
testcase_16 AC 25 ms
10,112 KB
testcase_17 AC 8 ms
7,808 KB
testcase_18 AC 208 ms
15,872 KB
testcase_19 AC 3 ms
6,940 KB
testcase_20 AC 4 ms
6,940 KB
testcase_21 AC 99 ms
12,544 KB
testcase_22 AC 35 ms
10,496 KB
testcase_23 AC 91 ms
12,032 KB
testcase_24 AC 2 ms
6,940 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

ソースコード

diff #

import Data.List

fork f (x,y) = (f x, f y)

main = do
 n <- readLn
 as <- map read . words <$> getLine
 print (pyramid n as)

pyramid n as = length ((ipos n as) \\ (ppos (sum as)))

ipos n as = [(x,y) | x <- [0 .. n-1], y <- [0 .. (as!!x - 1)]]

ppos x = last $ takeWhile ((<= x) . length) $ iterate shift [(0,0)]
 where shift ps = [(i,0) | i<-[0 .. (maximum (map fst ps) + 2)]] ++ map (fork succ) ps
0