結果

問題 No.250 atetubouのzetubou
ユーザー はむ吉🐹はむ吉🐹
提出日時 2015-10-30 19:07:14
言語 Haskell
(9.8.2)
結果
AC  
実行時間 1,872 ms / 5,000 ms
コード長 439 bytes
コンパイル時間 5,305 ms
コンパイル使用メモリ 176,256 KB
実行使用メモリ 10,112 KB
最終ジャッジ日時 2024-09-13 05:26:34
合計ジャッジ時間 29,982 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,073 ms
9,344 KB
testcase_01 AC 188 ms
8,960 KB
testcase_02 AC 1,636 ms
10,112 KB
testcase_03 AC 1,872 ms
10,112 KB
testcase_04 AC 1,609 ms
10,112 KB
testcase_05 AC 1,686 ms
9,984 KB
testcase_06 AC 1,309 ms
9,216 KB
testcase_07 AC 632 ms
9,344 KB
testcase_08 AC 1,543 ms
9,984 KB
testcase_09 AC 1,162 ms
9,984 KB
testcase_10 AC 1,652 ms
9,984 KB
testcase_11 AC 1,004 ms
9,984 KB
testcase_12 AC 1,531 ms
10,112 KB
testcase_13 AC 837 ms
9,216 KB
testcase_14 AC 13 ms
8,192 KB
testcase_15 AC 893 ms
9,472 KB
testcase_16 AC 882 ms
10,112 KB
testcase_17 AC 882 ms
9,344 KB
testcase_18 AC 864 ms
9,344 KB
testcase_19 AC 888 ms
9,344 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 1 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 #

combi :: Integral a => a -> a -> a
combi n m = product [n, n - 1 .. n - m + 1] `div` product [1 .. m]

judge :: Integer -> Integer -> Integer -> String
judge d x t
    | (<= t) $ flip combi x $ x + d - 1 = "AC"
    | otherwise                         = "ZETUBOU"

main :: IO ()
main = do
    _ <- getLine
    putStr . unlines .
        map (\(d : x : t : _) -> judge d x t) .
            map (map read) . map words . lines =<< getContents
0