結果

問題 No.128 お年玉(1)
ユーザー RokiRoki
提出日時 2019-01-07 22:40:06
言語 Haskell
(9.8.2)
結果
WA  
実行時間 -
コード長 295 bytes
コンパイル時間 3,830 ms
コンパイル使用メモリ 174,720 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-01 10:54:52
合計ジャッジ時間 4,550 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 WA -
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 1 ms
6,816 KB
testcase_06 AC 1 ms
6,816 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 1 ms
6,816 KB
testcase_09 AC 1 ms
6,816 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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:11:21: warning: [GHC-63394] [-Wx-partial]
    In the use of ‘head’
    (imported from Prelude, but defined in GHC.List):
    "This is a partial function, it throws an error on empty lists. Use pattern matching or Data.List.uncons instead. Consider refactoring to use Data.List.NonEmpty."
   |
11 |         digitToInt (head $ show v) * (10^dil v)
   |                     ^^^^
[2 of 2] Linking a.out

ソースコード

diff #

import Data.Char (digitToInt)
import Control.Monad (replicateM)

dil :: Show a => a -> Int
dil = pred . length . show

main :: IO ()
main = do
    [n, m] <- map read <$> replicateM 2 getLine
    print $ let v = n `div` m in if v < 1000 then 0 else
        digitToInt (head $ show v) * (10^dil v)
0