結果

問題 No.1359 [Zelkova 3rd Tune] 四人セゾン
ユーザー 小野寺健小野寺健
提出日時 2021-12-17 15:18:00
言語 Go
(1.22.1)
結果
AC  
実行時間 792 ms / 2,000 ms
コード長 1,198 bytes
コンパイル時間 16,092 ms
コンパイル使用メモリ 229,172 KB
実行使用メモリ 12,544 KB
最終ジャッジ日時 2024-09-14 16:14:49
合計ジャッジ時間 62,041 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 392 ms
8,064 KB
testcase_04 AC 358 ms
8,064 KB
testcase_05 AC 396 ms
7,808 KB
testcase_06 AC 407 ms
7,808 KB
testcase_07 AC 584 ms
10,368 KB
testcase_08 AC 500 ms
10,240 KB
testcase_09 AC 137 ms
5,888 KB
testcase_10 AC 139 ms
5,888 KB
testcase_11 AC 661 ms
11,648 KB
testcase_12 AC 632 ms
11,904 KB
testcase_13 AC 422 ms
8,576 KB
testcase_14 AC 407 ms
8,576 KB
testcase_15 AC 406 ms
7,808 KB
testcase_16 AC 351 ms
7,808 KB
testcase_17 AC 719 ms
12,160 KB
testcase_18 AC 670 ms
12,032 KB
testcase_19 AC 579 ms
11,008 KB
testcase_20 AC 583 ms
10,880 KB
testcase_21 AC 658 ms
11,520 KB
testcase_22 AC 652 ms
11,520 KB
testcase_23 AC 436 ms
8,960 KB
testcase_24 AC 437 ms
8,960 KB
testcase_25 AC 68 ms
5,376 KB
testcase_26 AC 67 ms
5,376 KB
testcase_27 AC 225 ms
6,016 KB
testcase_28 AC 229 ms
6,016 KB
testcase_29 AC 280 ms
6,656 KB
testcase_30 AC 325 ms
6,528 KB
testcase_31 AC 372 ms
7,424 KB
testcase_32 AC 384 ms
7,680 KB
testcase_33 AC 275 ms
6,400 KB
testcase_34 AC 274 ms
6,528 KB
testcase_35 AC 372 ms
8,064 KB
testcase_36 AC 393 ms
8,064 KB
testcase_37 AC 73 ms
5,376 KB
testcase_38 AC 72 ms
5,376 KB
testcase_39 AC 60 ms
5,376 KB
testcase_40 AC 58 ms
5,376 KB
testcase_41 AC 163 ms
5,760 KB
testcase_42 AC 156 ms
5,760 KB
testcase_43 AC 123 ms
5,632 KB
testcase_44 AC 792 ms
12,416 KB
testcase_45 AC 282 ms
6,736 KB
testcase_46 AC 95 ms
5,376 KB
testcase_47 AC 470 ms
9,344 KB
testcase_48 AC 454 ms
9,344 KB
testcase_49 AC 464 ms
9,600 KB
testcase_50 AC 350 ms
7,808 KB
testcase_51 AC 19 ms
5,376 KB
testcase_52 AC 596 ms
11,264 KB
testcase_53 AC 695 ms
12,288 KB
testcase_54 AC 711 ms
12,544 KB
testcase_55 AC 703 ms
12,544 KB
testcase_56 AC 706 ms
12,544 KB
testcase_57 AC 740 ms
12,544 KB
testcase_58 AC 725 ms
12,544 KB
testcase_59 AC 716 ms
12,544 KB
testcase_60 AC 710 ms
12,416 KB
testcase_61 AC 701 ms
12,416 KB
testcase_62 AC 734 ms
12,544 KB
testcase_63 AC 744 ms
12,416 KB
testcase_64 AC 711 ms
12,544 KB
testcase_65 AC 708 ms
12,544 KB
testcase_66 AC 714 ms
12,544 KB
testcase_67 AC 737 ms
12,544 KB
testcase_68 AC 709 ms
12,416 KB
testcase_69 AC 684 ms
12,544 KB
testcase_70 AC 691 ms
12,544 KB
testcase_71 AC 680 ms
12,544 KB
testcase_72 AC 711 ms
12,544 KB
testcase_73 AC 705 ms
12,544 KB
testcase_74 AC 708 ms
12,416 KB
testcase_75 AC 701 ms
12,544 KB
testcase_76 AC 702 ms
12,416 KB
testcase_77 AC 692 ms
12,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

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

func modpow(x int, n int, m int) int {
	var ret int = 1
	for n > 0 {
		if (n & 1) != 0 {
			ret = ret * x % m
		}
		x = x * x % m
		n >>= 1
	}
	return ret
}

func Min(a int, b int) int {
	if a <= b {
		return a
	} else {
		return b
	}
}

func Max(a int, b int) int {
	if a >= b {
		return a
	} else {
		return b
	}
}

func main() {
	r := bufio.NewReader(os.Stdin)
	w := bufio.NewWriter(os.Stdout)
    defer w.Flush()
	var N, K, M int
	fmt.Fscan(r, &N, &K, &M)
	P := make([]int, N)
	for i := 0; i < N; i++ {
		var x int
		fmt.Fscan(r, &x)
		P[i] = x
	}
	sort.Ints(P)
	E := make([]int, N)
	for i := 0; i < N; i++ {
		var x int
		fmt.Fscan(r, &x)
		E[i] = x
	}
	sort.Ints(E)
	A := make([]int, N)
	for i := 0; i < N; i++ {
		var x int
		fmt.Fscan(r, &x)
		A[i] = x
	}
	sort.Ints(A)
	H := make([]int, N)
	for i := 0; i < N; i++ {
		var x int
		fmt.Fscan(r, &x)
		H[i] = x
	}
	sort.Ints(H)
	D := 0
	min := 0
	max := 1
	for i := 0; i < N; i++ {
		p := P[i]
		e := E[i]
		min = Min(p, e)
		max = Max(p, e)
		a := A[i]
		h := H[i]
		min = Min(min, Min(a, h))
		max = Max(max, Max(a, h))
		D = (D + modpow(max - min, K, M)) % M
	}
	fmt.Fprintln(w, D)
}
0