結果

問題 No.167 N^M mod 10
ユーザー ldsybldsyb
提出日時 2017-01-31 17:46:12
言語 Haskell
(9.8.2)
結果
TLE  
実行時間 -
コード長 327 bytes
コンパイル時間 10,033 ms
コンパイル使用メモリ 172,160 KB
実行使用メモリ 166,320 KB
最終ジャッジ日時 2024-12-23 22:57:24
合計ジャッジ時間 37,562 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
10,624 KB
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 AC 7 ms
10,624 KB
testcase_06 AC 1 ms
120,908 KB
testcase_07 AC 1 ms
10,624 KB
testcase_08 AC 2 ms
166,320 KB
testcase_09 AC 1 ms
10,624 KB
testcase_10 AC 2 ms
153,468 KB
testcase_11 AC 1 ms
10,624 KB
testcase_12 AC 2 ms
148,552 KB
testcase_13 AC 2 ms
10,624 KB
testcase_14 AC 1 ms
153,968 KB
testcase_15 AC 2 ms
10,624 KB
testcase_16 AC 2 ms
157,636 KB
testcase_17 AC 2 ms
10,624 KB
testcase_18 AC 266 ms
35,656 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 2 ms
5,248 KB
testcase_27 TLE -
testcase_28 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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 #

powmod :: Integer -> Integer -> Integer -> Integer
powmod n m now
    | m == 0 = now
    | odd m = powmod (n * n) (m `div` 2) (now * n `mod` 10)
    | otherwise = powmod (n * n) (m `div` 2) now

main = do
    n <- getLine
    m <- getLine
    let n' = read n :: Integer
    let m' = read m :: Integer
    print $ powmod n' m' 1
0