結果

問題 No.182 新規性の虜
ユーザー Michae'GonMichae'Gon
提出日時 2015-04-18 01:57:31
言語 Haskell
(9.8.2)
結果
AC  
実行時間 424 ms / 5,000 ms
コード長 115 bytes
コンパイル時間 573 ms
コンパイル使用メモリ 155,964 KB
実行使用メモリ 68,224 KB
最終ジャッジ日時 2023-08-27 07:14:16
合計ジャッジ時間 5,073 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,572 KB
testcase_01 AC 3 ms
6,608 KB
testcase_02 AC 3 ms
6,608 KB
testcase_03 AC 3 ms
6,560 KB
testcase_04 AC 3 ms
6,772 KB
testcase_05 AC 3 ms
6,596 KB
testcase_06 AC 2 ms
6,620 KB
testcase_07 AC 2 ms
6,636 KB
testcase_08 AC 232 ms
46,672 KB
testcase_09 AC 424 ms
68,224 KB
testcase_10 AC 362 ms
58,000 KB
testcase_11 AC 282 ms
49,772 KB
testcase_12 AC 102 ms
26,188 KB
testcase_13 AC 3 ms
6,552 KB
testcase_14 AC 3 ms
6,592 KB
testcase_15 AC 2 ms
6,584 KB
testcase_16 AC 3 ms
6,716 KB
testcase_17 AC 3 ms
6,636 KB
testcase_18 AC 232 ms
36,428 KB
testcase_19 AC 162 ms
29,296 KB
testcase_20 AC 92 ms
21,148 KB
testcase_21 AC 282 ms
40,532 KB
testcase_22 AC 112 ms
24,720 KB
testcase_23 AC 3 ms
6,528 KB
testcase_24 AC 142 ms
49,812 KB
testcase_25 AC 62 ms
26,268 KB
testcase_26 AC 42 ms
16,288 KB
testcase_27 AC 2 ms
6,720 KB
evil01.txt AC 274 ms
75,084 KB
evil02.txt AC 274 ms
75,328 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 Data.List
main = getLine >> getLine >>= print . length . filter (\x -> length x == 1) . group . sort . words
0