結果

問題 No.322 Geometry Dash
ユーザー kimiyukikimiyuki
提出日時 2016-02-28 22:13:13
言語 Haskell
(9.8.2)
結果
AC  
実行時間 832 ms / 2,000 ms
コード長 319 bytes
コンパイル時間 2,056 ms
コンパイル使用メモリ 172,672 KB
実行使用メモリ 61,184 KB
最終ジャッジ日時 2024-09-24 12:20:56
合計ジャッジ時間 24,240 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 298 ms
38,144 KB
testcase_05 AC 536 ms
40,576 KB
testcase_06 AC 590 ms
42,752 KB
testcase_07 AC 643 ms
44,928 KB
testcase_08 AC 690 ms
46,720 KB
testcase_09 AC 552 ms
41,600 KB
testcase_10 AC 631 ms
43,776 KB
testcase_11 AC 676 ms
44,928 KB
testcase_12 AC 711 ms
45,696 KB
testcase_13 AC 747 ms
47,744 KB
testcase_14 AC 633 ms
43,648 KB
testcase_15 AC 666 ms
44,928 KB
testcase_16 AC 701 ms
44,672 KB
testcase_17 AC 751 ms
46,720 KB
testcase_18 AC 761 ms
47,744 KB
testcase_19 AC 701 ms
46,720 KB
testcase_20 AC 711 ms
46,848 KB
testcase_21 AC 724 ms
46,848 KB
testcase_22 AC 752 ms
49,024 KB
testcase_23 AC 782 ms
51,968 KB
testcase_24 AC 726 ms
47,744 KB
testcase_25 AC 753 ms
47,872 KB
testcase_26 AC 770 ms
49,920 KB
testcase_27 AC 807 ms
51,968 KB
testcase_28 AC 832 ms
54,144 KB
testcase_29 AC 743 ms
56,064 KB
testcase_30 AC 805 ms
61,184 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 #

module Main where
import Control.Applicative
import Data.List
import Data.Ratio
trd3 (_, _, c) = c
main = do
    _ <- getLine
    ts <- map read . words <$> getLine
    ds <- map read . words <$> getLine
    putStrLn . unwords . map (show . trd3) . sort $ zipWith3 (\ t d i -> (d % t :: Ratio Int, - t, i)) ts ds [1 ..]
0