結果

問題 No.85 TVザッピング(1)
ユーザー aimyaimy
提出日時 2017-05-02 21:03:52
言語 Haskell
(9.6.2)
結果
WA  
実行時間 -
コード長 99 bytes
コンパイル時間 1,058 ms
コンパイル使用メモリ 159,236 KB
実行使用メモリ 7,180 KB
最終ジャッジ日時 2023-10-12 05:16:55
合計ジャッジ時間 2,780 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,868 KB
testcase_01 AC 2 ms
6,884 KB
testcase_02 AC 2 ms
7,000 KB
testcase_03 AC 2 ms
7,088 KB
testcase_04 AC 3 ms
7,056 KB
testcase_05 AC 2 ms
6,960 KB
testcase_06 AC 3 ms
6,996 KB
testcase_07 AC 3 ms
7,028 KB
testcase_08 AC 3 ms
6,976 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 3 ms
6,876 KB
testcase_11 AC 3 ms
6,884 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 3 ms
6,888 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 3 ms
7,060 KB
testcase_18 WA -
testcase_19 AC 2 ms
7,172 KB
testcase_20 AC 2 ms
7,064 KB
testcase_21 AC 2 ms
6,872 KB
testcase_22 AC 3 ms
6,968 KB
testcase_23 AC 2 ms
7,040 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 3 ms
6,832 KB
testcase_26 AC 3 ms
6,996 KB
testcase_27 AC 3 ms
6,972 KB
testcase_28 AC 2 ms
7,064 KB
testcase_29 AC 2 ms
7,020 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 )
[2 of 2] Linking a.out

ソースコード

diff #

import Data.Bool
main = getLine >>= putStrLn . bool "NO" "YES" . any even . init . map read . words
0