結果

問題 No.322 Geometry Dash
ユーザー はむ吉🐹はむ吉🐹
提出日時 2016-07-14 19:37:50
言語 Haskell
(9.8.2)
結果
AC  
実行時間 311 ms / 2,000 ms
コード長 802 bytes
コンパイル時間 11,367 ms
コンパイル使用メモリ 180,176 KB
実行使用メモリ 35,968 KB
最終ジャッジ日時 2024-11-08 19:09:23
合計ジャッジ時間 21,626 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 76 ms
26,112 KB
testcase_05 AC 216 ms
29,952 KB
testcase_06 AC 242 ms
32,000 KB
testcase_07 AC 273 ms
33,024 KB
testcase_08 AC 284 ms
34,048 KB
testcase_09 AC 219 ms
30,976 KB
testcase_10 AC 244 ms
32,000 KB
testcase_11 AC 277 ms
32,000 KB
testcase_12 AC 269 ms
33,152 KB
testcase_13 AC 280 ms
35,072 KB
testcase_14 AC 238 ms
32,000 KB
testcase_15 AC 249 ms
32,000 KB
testcase_16 AC 254 ms
32,000 KB
testcase_17 AC 268 ms
33,024 KB
testcase_18 AC 278 ms
33,152 KB
testcase_19 AC 244 ms
32,000 KB
testcase_20 AC 274 ms
32,000 KB
testcase_21 AC 276 ms
33,024 KB
testcase_22 AC 281 ms
33,024 KB
testcase_23 AC 285 ms
35,072 KB
testcase_24 AC 255 ms
33,024 KB
testcase_25 AC 259 ms
32,896 KB
testcase_26 AC 264 ms
35,200 KB
testcase_27 AC 311 ms
35,072 KB
testcase_28 AC 291 ms
35,968 KB
testcase_29 AC 204 ms
29,824 KB
testcase_30 AC 227 ms
32,000 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
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

ソースコード

diff #

import Control.Applicative ((<$>))
import qualified Data.ByteString.Char8 as C
import Data.List (sortBy)
import Data.Maybe (fromJust)

type Spot k v = (k, v, v)

compareSpots :: (Num v, Ord v) => Spot k v -> Spot k v -> Ordering
compareSpots (_, t1, d1) (_, t2, d2) = compare (t2 * d1) $ t1 * d2

optimizeSeq :: (Num k, Num v, Ord v) => [Spot k v] -> [k]
optimizeSeq = fmap f . sortBy compareSpots
    where f (i, _, _) = i

unsafeReadInt :: C.ByteString -> Int
unsafeReadInt = fst . fromJust . C.readInt

main :: IO ()
main = do
    n <- unsafeReadInt <$> C.getLine
    ts <- fmap unsafeReadInt . C.words <$> C.getLine
    ds <- fmap unsafeReadInt . C.words <$> C.getLine
    let ss = optimizeSeq $ zipWith3 g [1 .. n] ts ds
    putStrLn . unwords $ fmap show ss
    where
        g i t s = (i, t, s)
0