結果
問題 | No.251 大きな桁の復習問題(1) |
ユーザー | fmhr |
提出日時 | 2015-08-01 08:36:59 |
言語 | Go (1.22.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,101 bytes |
コンパイル時間 | 11,304 ms |
コンパイル使用メモリ | 219,828 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-10 19:55:16 |
合計ジャッジ時間 | 12,153 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,820 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 1 ms
6,816 KB |
testcase_03 | AC | 1 ms
6,816 KB |
testcase_04 | WA | - |
testcase_05 | AC | 1 ms
6,816 KB |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 1 ms
6,816 KB |
testcase_09 | AC | 3 ms
6,820 KB |
testcase_10 | AC | 3 ms
6,820 KB |
testcase_11 | AC | 3 ms
6,816 KB |
testcase_12 | AC | 3 ms
6,816 KB |
testcase_13 | AC | 4 ms
6,816 KB |
testcase_14 | AC | 4 ms
6,820 KB |
testcase_15 | AC | 3 ms
6,820 KB |
testcase_16 | AC | 3 ms
6,820 KB |
testcase_17 | AC | 4 ms
6,816 KB |
testcase_18 | AC | 3 ms
6,816 KB |
testcase_19 | AC | 3 ms
6,816 KB |
testcase_20 | AC | 1 ms
6,820 KB |
testcase_21 | AC | 1 ms
6,816 KB |
testcase_22 | AC | 1 ms
6,824 KB |
testcase_23 | AC | 1 ms
6,820 KB |
ソースコード
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(pow2(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) }