結果

問題 No.251 大きな桁の復習問題(1)
ユーザー fmhrfmhr
提出日時 2015-08-01 08:36:20
言語 Go
(1.22.1)
結果
WA  
実行時間 -
コード長 1,100 bytes
コンパイル時間 13,213 ms
コンパイル使用メモリ 226,676 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-19 03:17:27
合計ジャッジ時間 13,271 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 WA -
testcase_05 AC 1 ms
5,376 KB
testcase_06 WA -
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 4 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 4 ms
5,376 KB
testcase_18 AC 3 ms
5,376 KB
testcase_19 AC 4 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() {
	N := readLine()
	M := readLine()
	//fmt.Println(pow(N, M))
	n := []rune(N)
	m := []rune(M)
	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)
	}
	//fmt.Println(n1, m1)
	fmt.Println(pow(n1, m1))
}

// 繰り返し二乗法
// http://judge.u-aizu.ac.jp/onlinejudge/commentary.jsp?id=NTL_1_B
// O(log(2)n)
const MOD = 129402307
func pow(x, n int) int {
	var res int
	if n == 0{
		return 1
	}
	res = pow(x, n/2)
	res = res*res%MOD
	if n%2==1{
		res = res*x%MOD
	}
	return res
}
const M = 129402307
func pow2(x, n int)int{
	if n == 0{
		return 1
	}
	var res int
	res = 1
	for n>0{
		if n%2==1{
			res = (res*x)%M
		}
		x = (x*x)%M
		n>>=1
	}
	return res
}


///////////////////////////////////////////////////
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