結果

問題 No.129 お年玉(2)
ユーザー okadukiokaduki
提出日時 2015-01-17 00:19:05
言語 Haskell
(9.8.2)
結果
AC  
実行時間 32 ms / 5,000 ms
コード長 315 bytes
コンパイル時間 11,446 ms
コンパイル使用メモリ 164,056 KB
実行使用メモリ 18,240 KB
最終ジャッジ日時 2023-08-18 16:28:58
合計ジャッジ時間 5,913 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
8,016 KB
testcase_01 AC 32 ms
17,976 KB
testcase_02 AC 2 ms
6,992 KB
testcase_03 AC 2 ms
7,036 KB
testcase_04 AC 2 ms
7,084 KB
testcase_05 AC 22 ms
17,584 KB
testcase_06 AC 22 ms
17,624 KB
testcase_07 AC 22 ms
18,020 KB
testcase_08 AC 23 ms
18,020 KB
testcase_09 AC 12 ms
15,452 KB
testcase_10 AC 22 ms
17,988 KB
testcase_11 AC 22 ms
18,080 KB
testcase_12 AC 3 ms
7,684 KB
testcase_13 AC 3 ms
7,508 KB
testcase_14 AC 22 ms
16,676 KB
testcase_15 AC 22 ms
15,812 KB
testcase_16 AC 22 ms
18,080 KB
testcase_17 AC 8 ms
13,200 KB
testcase_18 AC 22 ms
18,024 KB
testcase_19 AC 22 ms
17,972 KB
testcase_20 AC 23 ms
18,036 KB
testcase_21 AC 12 ms
15,000 KB
testcase_22 AC 22 ms
18,240 KB
testcase_23 AC 22 ms
18,056 KB
testcase_24 AC 32 ms
17,984 KB
testcase_25 AC 22 ms
17,920 KB
testcase_26 AC 22 ms
18,144 KB
testcase_27 AC 22 ms
17,612 KB
testcase_28 AC 22 ms
17,636 KB
testcase_29 AC 3 ms
7,076 KB
testcase_30 AC 2 ms
7,048 KB
testcase_31 AC 2 ms
7,080 KB
testcase_32 AC 2 ms
7,404 KB
testcase_33 AC 2 ms
7,040 KB
testcase_34 AC 2 ms
7,356 KB
testcase_35 AC 3 ms
7,312 KB
testcase_36 AC 3 ms
7,468 KB
testcase_37 AC 2 ms
7,380 KB
testcase_38 AC 5 ms
10,676 KB
testcase_39 AC 4 ms
9,628 KB
testcase_40 AC 6 ms
11,612 KB
testcase_41 AC 12 ms
16,056 KB
testcase_42 AC 7 ms
11,632 KB
testcase_43 AC 2 ms
7,640 KB
testcase_44 AC 32 ms
17,924 KB
testcase_45 AC 6 ms
11,512 KB
testcase_46 AC 3 ms
7,636 KB
testcase_47 AC 22 ms
17,972 KB
testcase_48 AC 23 ms
17,964 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 Control.Applicative
import Text.Printf

main = do
  n <- (read :: String -> Integer) <$> getLine
  m <- (read :: String -> Integer) <$> getLine
  print $ choose m (n `div` 1000 * 1000 `mod` (m*1000) `div` 1000)

choose n k = (f n k `div` f k k) `mod` 1000000000 
  where
    f n k = foldr (*) 1 [n-k+1..n]
  
0