結果

問題 No.45 回転寿司
ユーザー NekosanNekosan
提出日時 2015-08-11 20:04:28
言語 Haskell
(9.8.2)
結果
AC  
実行時間 6 ms / 5,000 ms
コード長 248 bytes
コンパイル時間 10,600 ms
コンパイル使用メモリ 158,148 KB
実行使用メモリ 11,244 KB
最終ジャッジ日時 2023-08-27 14:17:17
合計ジャッジ時間 10,635 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
8,900 KB
testcase_01 AC 5 ms
9,560 KB
testcase_02 AC 6 ms
10,516 KB
testcase_03 AC 6 ms
10,816 KB
testcase_04 AC 5 ms
9,712 KB
testcase_05 AC 3 ms
7,548 KB
testcase_06 AC 5 ms
9,272 KB
testcase_07 AC 5 ms
10,440 KB
testcase_08 AC 4 ms
8,316 KB
testcase_09 AC 5 ms
10,664 KB
testcase_10 AC 4 ms
8,924 KB
testcase_11 AC 4 ms
8,104 KB
testcase_12 AC 5 ms
10,608 KB
testcase_13 AC 3 ms
7,596 KB
testcase_14 AC 3 ms
7,376 KB
testcase_15 AC 4 ms
9,148 KB
testcase_16 AC 4 ms
8,460 KB
testcase_17 AC 4 ms
8,880 KB
testcase_18 AC 4 ms
8,416 KB
testcase_19 AC 6 ms
10,132 KB
testcase_20 AC 3 ms
7,484 KB
testcase_21 AC 2 ms
7,468 KB
testcase_22 AC 2 ms
7,004 KB
testcase_23 AC 3 ms
6,940 KB
testcase_24 AC 2 ms
7,132 KB
testcase_25 AC 3 ms
7,172 KB
testcase_26 AC 4 ms
9,040 KB
testcase_27 AC 5 ms
10,188 KB
testcase_28 AC 5 ms
9,180 KB
testcase_29 AC 5 ms
9,860 KB
testcase_30 AC 5 ms
10,064 KB
testcase_31 AC 2 ms
7,184 KB
testcase_32 AC 2 ms
7,152 KB
testcase_33 AC 6 ms
11,244 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 #

main = do
    _ <- getLine
    sushi <- getLine
    let sushiList = map read (words sushi) :: [Int]
    let dpt = dp sushiList
    putStrLn $ show $ head dpt

dp :: [Int] -> [Int]
dp dt = foldl (\(d1:d2:dx) x -> (max d1 (d2 + x)):d1:d2:dx) [0,0] dt
0