結果

問題 No.167 N^M mod 10
ユーザー くれちーくれちー
提出日時 2016-12-29 12:22:05
言語 Haskell
(9.8.2)
結果
TLE  
実行時間 -
コード長 268 bytes
コンパイル時間 4,785 ms
コンパイル使用メモリ 176,128 KB
実行使用メモリ 161,088 KB
最終ジャッジ日時 2024-12-15 07:40:51
合計ジャッジ時間 29,997 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
13,636 KB
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 2 ms
13,636 KB
testcase_06 AC 2 ms
119,464 KB
testcase_07 AC 2 ms
13,636 KB
testcase_08 AC 2 ms
96,480 KB
testcase_09 AC 2 ms
13,632 KB
testcase_10 AC 2 ms
103,156 KB
testcase_11 AC 2 ms
13,632 KB
testcase_12 AC 2 ms
108,804 KB
testcase_13 AC 2 ms
13,636 KB
testcase_14 AC 2 ms
131,440 KB
testcase_15 AC 1 ms
13,636 KB
testcase_16 AC 2 ms
105,076 KB
testcase_17 AC 2 ms
13,640 KB
testcase_18 AC 2 ms
114,596 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 3 ms
6,820 KB
testcase_27 TLE -
testcase_28 AC 58 ms
131,308 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 )
[2 of 2] Linking a.out

ソースコード

diff #

import Control.Monad

solve :: Integral a => a -> a -> a
solve n m 
    | m' == 0 = n `mod` 10
    | otherwise = (n' ^ m) `mod` 10
    where
        n' = n `mod` 10
        m' = (m - 1) `mod` 4

main = do
    n <- readLn
    m <- readLn
    putStrLn $ show $ solve n m
0