結果
| 問題 |
No.349 干支の置き物
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2016-04-16 22:45:52 |
| 言語 | Haskell (9.10.1) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 201 bytes |
| コンパイル時間 | 4,388 ms |
| コンパイル使用メモリ | 177,408 KB |
| 実行使用メモリ | 5,248 KB |
| 最終ジャッジ日時 | 2024-11-17 07:30:38 |
| 合計ジャッジ時間 | 5,383 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 29 |
コンパイルメッセージ
Loaded package environment from /home/judge/.ghc/x86_64-linux-9.8.2/environments/default
[1 of 2] Compiling Main ( Main.hs, Main.o )
Main.hs:3:1: warning: [GHC-94817] [-Wtabs]
Tab character found here, and in 10 further locations.
Suggested fix: Please use spaces instead.
|
3 | n <- readLn
| ^^^^^^^^
[2 of 2] Linking a.out
ソースコード
import Data.List main = do n <- readLn eto <- getContents >>= return . map length . group . sort . lines putStrLn $ if filter (> ceiling((fromIntegral n) / 2)) eto == [] then "YES" else "NO"