結果

問題 No.446 ゆきこーだーの雨と雪 (1)
ユーザー LeonardoneLeonardone
提出日時 2017-05-05 22:57:35
言語 Haskell
(9.8.2)
結果
WA  
実行時間 -
コード長 421 bytes
コンパイル時間 1,452 ms
コンパイル使用メモリ 154,240 KB
実行使用メモリ 7,268 KB
最終ジャッジ日時 2023-10-12 10:06:37
合計ジャッジ時間 2,576 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
7,176 KB
testcase_01 AC 3 ms
7,176 KB
testcase_02 AC 3 ms
6,796 KB
testcase_03 AC 3 ms
7,268 KB
testcase_04 AC 3 ms
7,020 KB
testcase_05 AC 3 ms
7,036 KB
testcase_06 AC 3 ms
7,188 KB
testcase_07 WA -
testcase_08 AC 3 ms
7,220 KB
testcase_09 AC 3 ms
7,268 KB
testcase_10 AC 2 ms
7,180 KB
testcase_11 AC 2 ms
6,768 KB
testcase_12 AC 2 ms
7,036 KB
testcase_13 AC 2 ms
7,200 KB
testcase_14 AC 2 ms
7,152 KB
testcase_15 AC 2 ms
7,152 KB
testcase_16 AC 3 ms
7,204 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 #

-- yukicoder My Practice
-- author: Leonardone @ NEETSDKASU

main = getContents >>= putStrLn . solve . words

solve [a,b] = if check a && check b then "OK" else "NG"

check xs@(x:_)
    | checkAllNum xs = let v = read xs
                       in if x == '0' then v == 0 else v <= 12345
    | otherwise = False

checkAllNum [] = True
checkAllNum (x:xs)
    | '0' <= x && x <= '9' = checkAllNum xs
    | otherwise = False
0