結果
問題 | No.183 たのしい排他的論理和(EASY) |
ユーザー | Eliza_0x |
提出日時 | 2018-05-13 14:18:14 |
言語 | Haskell (9.8.2) |
結果 |
MLE
|
実行時間 | - |
コード長 | 511 bytes |
コンパイル時間 | 1,629 ms |
コンパイル使用メモリ | 174,208 KB |
実行使用メモリ | 813,784 KB |
最終ジャッジ日時 | 2024-06-28 09:59:49 |
合計ジャッジ時間 | 4,387 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
22,256 KB |
testcase_01 | AC | 51 ms
31,488 KB |
testcase_02 | AC | 187 ms
75,776 KB |
testcase_03 | AC | 158 ms
66,044 KB |
testcase_04 | AC | 49 ms
30,708 KB |
testcase_05 | AC | 203 ms
76,040 KB |
testcase_06 | AC | 82 ms
35,704 KB |
testcase_07 | MLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
コンパイルメッセージ
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
ソースコード
import Data.Bits import Data.Array main = do n <- read <$> getLine :: IO Int ns <- listArray (1,n) . map read . words <$> getLine :: IO (Array Int Int) print $ dp ns dp :: Array Int Int -> Int dp ns = sum [if memo!(n,i) then 1 else 0|i<-[0..40000]] where (_,n) = bounds ns memo = array ((0,0), (n, 40000)) $ [((y,x), f y x)|y<-[0..n], x<-[0..40000]] f 0 0 = True f 0 _ = False f y x = memo!(y-1, x) || (if x `xor` ns!y < 40000 then memo!(y-1, x `xor` (ns!y)) else False)