Submission #432326


Source Code Expand

import Data.List
import Control.Monad
import Data.Set (Set)
import qualified Data.Set as S

getInt :: IO Int
getInt = getLine >>= return . read

getInts :: IO [Int]
getInts = getLine >>= \s -> return (map read (words s))

getInteger :: IO Integer
getInteger = getLine >>= return . read

getIntegers :: IO [Integer]
getIntegers = getLine >>= \s -> return (map read (words s))

getStrings :: IO [String]
getStrings = getLine >>= return . words

readInt :: String -> Int
readInt = read

readInteger :: String -> Integer
readInteger = read

intToInteger :: Int -> Integer
intToInteger = toEnum

integerToInt :: Integer -> Int
integerToInt = fromEnum

doubleToInteger :: Double -> Integer
doubleToInteger = truncate

integerToDouble :: Integer -> Double
integerToDouble = fromIntegral

doubleToInt :: Double -> Int
doubleToInt = truncate

intToDouble :: Int -> Double
intToDouble = fromIntegral

getMaybe Nothing = undefined
getMaybe (Just a) = a

main = do
  s <- getLine
  n <- getInt
  putStrLn $ [ [c1, c2] | c1 <- s, c2 <- s ] !! (n - 1)
 

Submission Info

Submission Time
Task A - 25個の文字列
User lambdataro
Language Haskell (Haskell Platform 2014.2.0.0)
Score 100
Code Size 1092 Byte
Status AC
Exec Time 33 ms
Memory 1304 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 100 / 100
Status
AC × 3
AC × 33
Set Name Test Cases
Sample sample-01.txt, sample-02.txt, sample-03.txt
All test-01.txt, test-02.txt, test-03.txt, test-04.txt, test-05.txt, test-06.txt, test-07.txt, test-08.txt, test-09.txt, test-10.txt, test-11.txt, test-12.txt, test-13.txt, test-14.txt, test-15.txt, test-16.txt, test-17.txt, test-18.txt, test-19.txt, test-20.txt, test-21.txt, test-22.txt, test-23.txt, test-24.txt, test-25.txt, test-26.txt, test-27.txt, test-28.txt, test-29.txt, test-30.txt, sample-01.txt, sample-02.txt, sample-03.txt
Case Name Status Exec Time Memory
sample-01.txt AC 29 ms 1232 KB
sample-02.txt AC 30 ms 1244 KB
sample-03.txt AC 32 ms 1228 KB
test-01.txt AC 33 ms 1248 KB
test-02.txt AC 33 ms 1252 KB
test-03.txt AC 30 ms 1252 KB
test-04.txt AC 30 ms 1248 KB
test-05.txt AC 30 ms 1244 KB
test-06.txt AC 29 ms 1228 KB
test-07.txt AC 31 ms 1252 KB
test-08.txt AC 30 ms 1248 KB
test-09.txt AC 30 ms 1244 KB
test-10.txt AC 31 ms 1292 KB
test-11.txt AC 30 ms 1296 KB
test-12.txt AC 29 ms 1296 KB
test-13.txt AC 27 ms 1292 KB
test-14.txt AC 31 ms 1296 KB
test-15.txt AC 29 ms 1272 KB
test-16.txt AC 31 ms 1240 KB
test-17.txt AC 30 ms 1248 KB
test-18.txt AC 28 ms 1228 KB
test-19.txt AC 27 ms 1244 KB
test-20.txt AC 32 ms 1296 KB
test-21.txt AC 29 ms 1296 KB
test-22.txt AC 29 ms 1300 KB
test-23.txt AC 29 ms 1188 KB
test-24.txt AC 29 ms 1300 KB
test-25.txt AC 29 ms 1296 KB
test-26.txt AC 31 ms 1300 KB
test-27.txt AC 27 ms 1244 KB
test-28.txt AC 30 ms 1292 KB
test-29.txt AC 29 ms 1304 KB
test-30.txt AC 29 ms 1232 KB