結果

問題 No.128 お年玉(1)
ユーザー RokiRoki
提出日時 2019-01-07 22:40:06
言語 Haskell
(9.8.2)
結果
WA  
実行時間 -
コード長 295 bytes
コンパイル時間 1,900 ms
コンパイル使用メモリ 165,248 KB
実行使用メモリ 6,676 KB
最終ジャッジ日時 2024-04-08 19:41:35
合計ジャッジ時間 2,644 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,676 KB
testcase_01 AC 2 ms
6,676 KB
testcase_02 AC 2 ms
6,676 KB
testcase_03 WA -
testcase_04 AC 3 ms
6,676 KB
testcase_05 AC 2 ms
6,676 KB
testcase_06 AC 2 ms
6,676 KB
testcase_07 AC 2 ms
6,676 KB
testcase_08 AC 2 ms
6,676 KB
testcase_09 AC 2 ms
6,676 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.6.2/environments/default
[1 of 2] Compiling Main             ( Main.hs, Main.o )
[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