結果
問題 | No.251 大きな桁の復習問題(1) |
ユーザー | fmhr |
提出日時 | 2015-08-01 08:47:49 |
言語 | Go (1.22.1) |
結果 |
AC
|
実行時間 | 4 ms / 5,000 ms |
コード長 | 1,052 bytes |
コンパイル時間 | 20,268 ms |
コンパイル使用メモリ | 237,452 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-09 22:49:07 |
合計ジャッジ時間 | 12,479 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 2 ms
5,376 KB |
testcase_05 | AC | 2 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 | 4 ms
5,376 KB |
testcase_12 | AC | 4 ms
5,376 KB |
testcase_13 | AC | 4 ms
5,376 KB |
testcase_14 | AC | 4 ms
5,376 KB |
testcase_15 | AC | 4 ms
5,376 KB |
testcase_16 | AC | 4 ms
5,376 KB |
testcase_17 | AC | 4 ms
5,376 KB |
testcase_18 | AC | 4 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 |
ソースコード
package main import ( "bufio" "fmt" "os" ) func main() { solve() } func solve(){ N := readLine() M := readLine() //fmt.Println(pow(N, M)) 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) } fmt.Println(pow(n1, m1)) return } // 繰り返し二乗法 // 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 x == 0{ return 0 } if n == 0{ return 1 } res = pow(x, n/2) res = res*res%MOD if n%2==1{ res = res*x%MOD } 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) }