結果
問題 | No.48 ロボットの操縦 |
ユーザー | nobsun |
提出日時 | 2018-06-18 07:42:04 |
言語 | Haskell (9.8.2) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 570 bytes |
コンパイル時間 | 6,821 ms |
コンパイル使用メモリ | 172,544 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-30 16:48:02 |
合計ジャッジ時間 | 5,192 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 1 ms
5,376 KB |
testcase_14 | AC | 1 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 1 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 1 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 1 ms
5,376 KB |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | AC | 1 ms
5,376 KB |
testcase_23 | AC | 1 ms
5,376 KB |
testcase_24 | AC | 1 ms
5,376 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
ソースコード
module Main where import Data.Bool main :: IO () main = do { x <- getInt ; y <- getInt ; l <- getInt ; print $ rcount (x,y) + dist l (x,y) } rcount :: (Int,Int) -> Int rcount (x,y) = case (signum x,signum y) of (1,1) -> 1 (1,0) -> 1 (1,-1) -> 2 (0,1) -> 0 (0,0) -> 0 (0,-1) -> 2 (-1,1) -> 1 (-1,0) -> 1 (-1,-1) -> 2 dist :: Int -> (Int,Int) -> Int dist z (x,y) = case divMod (abs x) z of (d,m) -> case divMod (abs y) z of (d',m') -> bool (succ d) d (m == 0) + bool (succ d') d' (m' == 0) getInt :: IO Int getInt = read <$> getLine