結果

問題 No.365 ジェンガソート
ユーザー HaarHaar
提出日時 2016-09-09 07:13:07
言語 Haskell
(9.8.2)
結果
AC  
実行時間 368 ms / 2,000 ms
コード長 261 bytes
コンパイル時間 9,503 ms
コンパイル使用メモリ 173,884 KB
実行使用メモリ 83,072 KB
最終ジャッジ日時 2024-11-15 22:57:07
合計ジャッジ時間 14,198 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 1 ms
6,820 KB
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 1 ms
6,816 KB
testcase_11 AC 2 ms
6,816 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 2 ms
6,820 KB
testcase_16 AC 250 ms
48,896 KB
testcase_17 AC 318 ms
67,968 KB
testcase_18 AC 26 ms
12,416 KB
testcase_19 AC 316 ms
67,072 KB
testcase_20 AC 96 ms
25,088 KB
testcase_21 AC 74 ms
21,248 KB
testcase_22 AC 249 ms
48,896 KB
testcase_23 AC 150 ms
39,680 KB
testcase_24 AC 236 ms
47,616 KB
testcase_25 AC 71 ms
21,120 KB
testcase_26 AC 194 ms
43,776 KB
testcase_27 AC 342 ms
81,408 KB
testcase_28 AC 200 ms
46,720 KB
testcase_29 AC 285 ms
54,016 KB
testcase_30 AC 206 ms
46,592 KB
testcase_31 AC 88 ms
24,192 KB
testcase_32 AC 84 ms
24,064 KB
testcase_33 AC 353 ms
80,384 KB
testcase_34 AC 58 ms
18,688 KB
testcase_35 AC 242 ms
47,616 KB
testcase_36 AC 352 ms
82,816 KB
testcase_37 AC 360 ms
82,816 KB
testcase_38 AC 368 ms
83,072 KB
testcase_39 AC 356 ms
82,816 KB
testcase_40 AC 360 ms
82,816 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 Control.Applicative

solve [] _ = 0
solve (x:xs) n
  | x == n = solve xs (n-1)
  | otherwise = 1 + solve xs n

main :: IO()
main = do
  n <- (read::String->Int) <$> getLine
  a <- reverse . map (read::String->Int) . words <$> getLine
  print $ solve a n
0