結果

問題 No.251 大きな桁の復習問題(1)
ユーザー fmhrfmhr
提出日時 2016-07-25 16:30:25
言語 Go
(1.22.1)
結果
AC  
実行時間 4 ms / 5,000 ms
コード長 1,053 bytes
コンパイル時間 13,978 ms
コンパイル使用メモリ 245,092 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-09 23:03:26
合計ジャッジ時間 11,853 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 3 ms
5,376 KB
testcase_16 AC 4 ms
5,376 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 3 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"bufio"
	"fmt"
	"os"
)

func main() {
	solve()
}

func solve() {
	N := readLine()
	M := readLine()
	n := []rune(N)
	m := []rune(M)
	if N == "0" {
		fmt.Println("0")
		return
	}
	if M == "0" {
		fmt.Println("1")
		return
	}
	var n1, m1 int
	for _, v := range n {
		n1 = (n1*10 + (int(v) - int('0'))) % MOD
	}
	for _, v := range m {
		m1 = (m1*10 + (int(v) - int('0'))) % (MOD - 1)
	}
	// %MODで0になる数(0^0)をはじく
	if n1==0&&m1==0{
		fmt.Println("0")
		return
	}
	fmt.Println(pow(n1, m1))
	return
}

const MOD = 129402307
func pow(x, n int) int {
	for {
		if n == 0 {
			return 1
		} else if x == 0 {
			return 0
		} else if n%2 == 0 {
			x = x * x % MOD
			n = n / 2
		} else {
			return pow(x*x%MOD, n/2) * x % MOD
		}
	}
}
///////////////////////////////////////////////////
var rdr = bufio.NewReaderSize(os.Stdin, 1000000)

func readLine() string {
	buf := make([]byte, 0)
	for {
		l, p, e := rdr.ReadLine()
		if e != nil {
			panic(e)
		}
		buf = append(buf, l...)
		if !p {
			break
		}
	}
	return string(buf)
}
0