結果
問題 |
No.170 スワップ文字列(Easy)
|
ユーザー |
![]() |
提出日時 | 2015-10-25 22:09:40 |
言語 | Haskell (9.10.1) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 331 bytes |
コンパイル時間 | 3,917 ms |
コンパイル使用メモリ | 175,268 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-23 00:32:21 |
合計ジャッジ時間 | 4,752 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 21 |
コンパイルメッセージ
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
ソースコード
import Data.List (sort, group) factorial :: Int -> Int factorial 0 = 1 factorial n = product [1 .. n] countPermutations :: String -> Int countPermutations s = subtract 1 $ div l $ product $ map factorial $ map length $ group $ sort s where l = factorial $ length s main :: IO () main = print . countPermutations =<< getLine