結果
問題 | No.167 N^M mod 10 |
ユーザー | Michae'Gon |
提出日時 | 2015-07-17 17:16:24 |
言語 | Haskell (9.8.2) |
結果 |
WA
|
実行時間 | - |
コード長 | 662 bytes |
コンパイル時間 | 2,490 ms |
コンパイル使用メモリ | 180,696 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-08 08:25:26 |
合計ジャッジ時間 | 3,235 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | AC | 1 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | WA | - |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | WA | - |
testcase_14 | AC | 1 ms
5,376 KB |
testcase_15 | AC | 1 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 1 ms
5,376 KB |
testcase_18 | WA | - |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | WA | - |
testcase_21 | AC | 2 ms
5,376 KB |
testcase_22 | WA | - |
testcase_23 | AC | 1 ms
5,376 KB |
testcase_24 | AC | 2 ms
5,376 KB |
testcase_25 | WA | - |
testcase_26 | AC | 1 ms
5,376 KB |
testcase_27 | WA | - |
testcase_28 | 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 ) [2 of 2] Linking a.out
ソースコード
import qualified Data.ByteString.Char8 as B import Data.Maybe(fromJust) main = B.getContents >>= main' . map readInteger' . B.lines where main' [a, x] = print (pow' a x `mod` m) {- main' [a, x] | a == 0 && x == 0 = return () | otherwise = print (pow' a x `mod` m) >> main -} m :: Integer m = 10 readInteger' :: B.ByteString -> Integer {-# INLINE readInteger' #-} readInteger' = fst . fromJust . B.readInteger pow' :: Integer -> Integer -> Integer pow' a x | x == 0 = 1 | x > m = pow' a (x `mod` m) | a > m = pow' (a `mod` m) x | even x = pow' (a * a) (x `div` 2) | otherwise = a * pow' a (x - 1)