結果
問題 | No.181 A↑↑N mod M |
ユーザー | aru aru |
提出日時 | 2020-09-05 19:38:21 |
言語 | Go (1.22.1) |
結果 |
AC
|
実行時間 | 249 ms / 5,000 ms |
コード長 | 2,238 bytes |
コンパイル時間 | 12,902 ms |
コンパイル使用メモリ | 230,784 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-06 20:01:40 |
合計ジャッジ時間 | 21,856 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 216 ms
5,248 KB |
testcase_01 | AC | 217 ms
5,248 KB |
testcase_02 | AC | 218 ms
5,376 KB |
testcase_03 | AC | 218 ms
5,376 KB |
testcase_04 | AC | 219 ms
5,376 KB |
testcase_05 | AC | 224 ms
5,376 KB |
testcase_06 | AC | 249 ms
5,376 KB |
testcase_07 | AC | 219 ms
5,376 KB |
testcase_08 | AC | 225 ms
5,376 KB |
testcase_09 | AC | 219 ms
5,376 KB |
testcase_10 | AC | 224 ms
5,376 KB |
testcase_11 | AC | 220 ms
5,376 KB |
testcase_12 | AC | 220 ms
5,376 KB |
testcase_13 | AC | 221 ms
5,376 KB |
testcase_14 | AC | 224 ms
5,376 KB |
testcase_15 | AC | 222 ms
5,376 KB |
testcase_16 | AC | 240 ms
5,376 KB |
testcase_17 | AC | 223 ms
5,376 KB |
testcase_18 | AC | 219 ms
5,376 KB |
testcase_19 | AC | 217 ms
5,376 KB |
testcase_20 | AC | 218 ms
5,376 KB |
testcase_21 | AC | 218 ms
5,376 KB |
testcase_22 | AC | 220 ms
5,376 KB |
testcase_23 | AC | 218 ms
5,376 KB |
testcase_24 | AC | 220 ms
5,376 KB |
testcase_25 | AC | 220 ms
5,376 KB |
testcase_26 | AC | 220 ms
5,376 KB |
testcase_27 | AC | 219 ms
5,376 KB |
testcase_28 | AC | 218 ms
5,376 KB |
testcase_29 | AC | 222 ms
5,376 KB |
testcase_30 | AC | 222 ms
5,376 KB |
testcase_31 | AC | 231 ms
5,376 KB |
testcase_32 | AC | 230 ms
5,376 KB |
testcase_33 | AC | 226 ms
5,376 KB |
testcase_34 | AC | 219 ms
5,376 KB |
testcase_35 | AC | 223 ms
5,376 KB |
testcase_36 | AC | 223 ms
5,376 KB |
testcase_37 | AC | 221 ms
5,376 KB |
testcase_38 | AC | 219 ms
5,376 KB |
testcase_39 | AC | 222 ms
5,376 KB |
testcase_40 | AC | 221 ms
5,376 KB |
testcase_41 | AC | 220 ms
5,376 KB |
testcase_42 | AC | 218 ms
5,376 KB |
ソースコード
package main import ( "bufio" "fmt" "os" "sort" "strconv" ) func out(x ...interface{}) { fmt.Println(x...) } var sc = bufio.NewScanner(os.Stdin) func getInt() int { sc.Scan() i, e := strconv.Atoi(sc.Text()) if e != nil { panic(e) } return i } func getInts(N int) []int { ret := make([]int, N) for i := 0; i < N; i++ { ret[i] = getInt() } return ret } func getString() string { sc.Scan() return sc.Text() } // min, max, asub, absなど基本関数 func max(a, b int) int { if a > b { return a } return b } func min(a, b int) int { if a < b { return a } return b } func asub(a, b int) int { if a > b { return a - b } return b - a } func abs(a int) int { if a >= 0 { return a } return -a } func lowerBound(a []int, x int) int { idx := sort.Search(len(a), func(i int) bool { return a[i] >= x }) return idx } func upperBound(a []int, x int) int { idx := sort.Search(len(a), func(i int) bool { return a[i] > x }) return idx } func modpow(a, p, m int) int { if a == 0 { return 0 } if p == 0 { return 1 } if p%2 == 0 { tmp := modpow(a, p/2, m) return tmp * tmp % m } return a * modpow(a, p-1, m) % m } const Mmax = 2000 var phi [Mmax + 20]int func AtoB(a, b, upbound int) int { if b == 0 || a == 1 { return min(upbound, 1) } if b == 1 { return min(upbound, a) } if b == 2 { if a > 10 { return upbound } return min(modpow(a, a, 1<<60), upbound) } if a == 2 && b == 3 { return min(upbound, 1<<4) } if a == 3 && b == 3 { return min(upbound, modpow(3, 27, 1<<60)) } if a == 2 && b == 4 { return min(upbound, 1<<16) } return upbound } func H4M(a, b, m int) int { if m == 1 { return 0 } if a == 1 || b == 0 { return 1 } t := AtoB(a, b-1, m+1) if t <= m { return modpow(a, t, m) } return modpow(a, m+(H4M(a, b-1, phi[m])-m)%phi[m], m) } // GCD : greatest common divisor (GCD) via Euclidean algorithm func GCD(a, b int) int { for b != 0 { t := b b = a % b a = t } return a } func GetPhi() { for x := 1; x <= Mmax; x++ { for i := 1; i <= x; i++ { if GCD(i, x) == 1 { phi[x]++ } } } } func main() { sc.Split(bufio.ScanWords) A, N, M := getInt(), getInt(), getInt() GetPhi() out(H4M(A, N, M)) }