結果
| 問題 | No.773 コンテスト |
| コンテスト | |
| ユーザー |
tottoripaper
|
| 提出日時 | 2018-12-22 22:05:43 |
| 言語 | Haskell (9.14.1) |
| 結果 |
AC
|
| 実行時間 | 2 ms / 2,000 ms |
| コード長 | 153 bytes |
| 記録 | |
| コンパイル時間 | 8,990 ms |
| コンパイル使用メモリ | 198,400 KB |
| 実行使用メモリ | 6,144 KB |
| 最終ジャッジ日時 | 2026-03-28 00:24:26 |
| 合計ジャッジ時間 | 9,830 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 21 |
コンパイルメッセージ
Loaded package environment from /home/judge/.ghc/x86_64-linux-9.14.1/environments/default [1 of 2] Compiling Main ( Main.hs, Main.o ) [2 of 2] Linking a.out
ソースコード
readInts :: IO [Int] readInts = fmap (map read . words) getLine main = do [a, b] <- readInts print $ length $ filter (\d -> d < a || d > b) [23..25]
tottoripaper