結果

問題 No.1169 Row and Column and Diagonal
ユーザー poapoapoapoa
提出日時 2020-08-15 01:14:11
言語 Haskell
(9.8.2)
結果
AC  
実行時間 31 ms / 2,000 ms
コード長 471 bytes
コンパイル時間 2,526 ms
コンパイル使用メモリ 180,632 KB
実行使用メモリ 8,960 KB
最終ジャッジ日時 2024-04-18 23:26:39
合計ジャッジ時間 3,752 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 5 ms
8,064 KB
testcase_07 AC 9 ms
8,192 KB
testcase_08 AC 13 ms
8,320 KB
testcase_09 AC 16 ms
8,320 KB
testcase_10 AC 24 ms
8,704 KB
testcase_11 AC 31 ms
8,832 KB
testcase_12 AC 29 ms
8,832 KB
testcase_13 AC 29 ms
8,832 KB
testcase_14 AC 30 ms
8,960 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 qualified Control.Monad          as M
import qualified Data.ByteString.Char8  as B

main :: IO ()
main = do
  n <- readLn :: IO Int
  let m = (n `div` 2) + 1
  M.forM_ [1..n] $ \i -> do
    B.putStrLn $ B.pack $ unwords . map show $ shift (i - 1) $ merge [1..m] [m+1..n]

merge :: [Int] -> [Int] -> [Int]
merge xs     []     = xs
merge []     ys     = ys
merge (x:xs) (y:ys) = x : y : merge xs ys

shift :: Int -> [Int] -> [Int]
shift n xs = drop n xs ++ take n xs
0