結果
| 問題 | No.182 新規性の虜 |
| コンテスト | |
| ユーザー |
sanao10000
|
| 提出日時 | 2022-09-15 13:22:19 |
| 言語 | Haskell (9.10.1) |
| 結果 |
CE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 266 bytes |
| コンパイル時間 | 2,625 ms |
| コンパイル使用メモリ | 149,120 KB |
| 最終ジャッジ日時 | 2024-11-15 05:28:04 |
| 合計ジャッジ時間 | 3,671 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
コンパイルエラー時のメッセージ・ソースコードは、提出者また管理者しか表示できないようにしております。(リジャッジ後のコンパイルエラーは公開されます)
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
ただし、clay言語の場合は開発者のデバッグのため、公開されます。
コンパイルメッセージ
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:1:1: error: [GHC-87110]
Could not load module ‘Data.IntMap.Strict’.
It is a member of the hidden package ‘containers-0.6.8’.
Use -v to see a list of the files searched for.
|
1 | import qualified Data.IntMap.Strict as IM
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
ソースコード
import qualified Data.IntMap.Strict as IM
main = interact $ show . def
def = solve . map read . tail .words
solve = IM.foldr loop 0 . foldr go IM.empty
where
go i mp = IM.insertWith(+) i 1 mp
loop i ans
| i == 1 = succ ans
| otherwise = ans
sanao10000