結果
| 問題 |
No.403 2^2^2
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2016-09-05 05:09:10 |
| 言語 | Haskell (9.10.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 302 bytes |
| コンパイル時間 | 11,212 ms |
| コンパイル使用メモリ | 177,912 KB |
| 実行使用メモリ | 245,280 KB |
| 最終ジャッジ日時 | 2024-11-15 20:20:02 |
| 合計ジャッジ時間 | 80,443 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 WA * 1 |
| other | AC * 2 WA * 2 TLE * 23 |
コンパイルメッセージ
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
ソースコード
main = do
str <- getLine
let [a, b, c] = map read $ splitBy '^' str
let a_bc = a ^ (b ^ c)
let ab_c = (a ^ b) ^ c
putStrLn (show ab_c ++ " " ++ show a_bc)
splitBy delimiter = foldr f [[]]
where f c l@(x:xs) | c == delimiter = []:l
| otherwise = (c:x):xs