結果

問題 No.264 じゃんけん
ユーザー vain0vain0
提出日時 2015-08-07 23:41:57
言語 Haskell
(9.6.2)
結果
WA  
実行時間 -
コード長 605 bytes
コンパイル時間 7,438 ms
コンパイル使用メモリ 163,552 KB
実行使用メモリ 7,040 KB
最終ジャッジ日時 2023-09-25 06:27:41
合計ジャッジ時間 6,628 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,840 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 3 ms
6,932 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 3 ms
6,908 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Loaded package environment from /home/judge/.ghc/x86_64-linux-9.6.1/environments/default
[1 of 2] Compiling Main             ( Main.hs, Main.o )

Main.hs:21:1: warning: [GHC-94817] [-Wtabs]
    Tab character found here, and in four further locations.
    Suggested fix: Please use spaces instead.
   |
21 |         | ((i + 1) `mod` 3) == j   = "Win"
   | ^^^^^^^^
[2 of 2] Linking a.out

ソースコード

diff #

import Control.Monad
import Control.Applicative
import Data.Traversable (sequenceA)
import qualified Data.Map.Strict as Map
import Data.Bits
import Data.Char
import Data.Ix
import Data.Array.IO
import Data.Array.ST
import Data.Array.Unboxed
import Data.Array.IArray
import Data.Array.Base(unsafeRead, unsafeWrite)
import Data.Maybe
import Text.Printf
import System.IO

readInt :: String -> Int
readInt = read

rsp i j
	| ((i + 1) `mod` 3) == j   = "Win"
	| ((j + 1) `mod` 3) == i   = "Lose"
	| otherwise                = "Drew"

main = do
	[n, k] <- fmap (map readInt . words) getLine
	putStrLn $ rsp n k
0