結果
問題 | No.99 ジャンピング駒 |
ユーザー | Haar |
提出日時 | 2016-04-03 13:52:17 |
言語 | Haskell (9.8.2) |
結果 |
AC
|
実行時間 | 407 ms / 5,000 ms |
コード長 | 128 bytes |
コンパイル時間 | 8,466 ms |
コンパイル使用メモリ | 172,672 KB |
実行使用メモリ | 58,112 KB |
最終ジャッジ日時 | 2024-10-02 12:35:44 |
合計ジャッジ時間 | 6,075 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 388 ms
57,984 KB |
testcase_01 | AC | 407 ms
58,112 KB |
testcase_02 | AC | 386 ms
57,984 KB |
testcase_03 | AC | 400 ms
58,112 KB |
testcase_04 | AC | 393 ms
58,112 KB |
testcase_05 | AC | 396 ms
57,600 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 ) Main.hs:3:1: warning: [GHC-94817] [-Wtabs] Tab character found here, and in one further location. Suggested fix: Please use spaces instead. | 3 | getLine | ^^^^^^^^ [2 of 2] Linking a.out
ソースコード
import Data.List main = do getLine getLine >>= print . (\(a,b) -> abs(length a - length b)) . partition odd . map read . words