結果

問題 No.1359 [Zelkova 3rd Tune] 四人セゾン
ユーザー tatt61880tatt61880
提出日時 2021-02-20 19:46:58
言語 Kuin
(KuinC++ v.2021.9.17)
結果
AC  
実行時間 715 ms / 2,000 ms
コード長 1,008 bytes
コンパイル時間 2,325 ms
コンパイル使用メモリ 148,352 KB
実行使用メモリ 32,000 KB
最終ジャッジ日時 2024-09-16 11:32:29
合計ジャッジ時間 41,351 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 352 ms
18,048 KB
testcase_04 AC 349 ms
18,176 KB
testcase_05 AC 331 ms
17,792 KB
testcase_06 AC 333 ms
17,920 KB
testcase_07 AC 483 ms
24,064 KB
testcase_08 AC 486 ms
24,064 KB
testcase_09 AC 134 ms
9,216 KB
testcase_10 AC 136 ms
9,088 KB
testcase_11 AC 614 ms
28,800 KB
testcase_12 AC 613 ms
28,800 KB
testcase_13 AC 396 ms
20,096 KB
testcase_14 AC 393 ms
20,096 KB
testcase_15 AC 345 ms
17,920 KB
testcase_16 AC 349 ms
17,792 KB
testcase_17 AC 666 ms
30,208 KB
testcase_18 AC 658 ms
30,080 KB
testcase_19 AC 564 ms
26,752 KB
testcase_20 AC 565 ms
26,752 KB
testcase_21 AC 615 ms
28,416 KB
testcase_22 AC 667 ms
28,544 KB
testcase_23 AC 413 ms
21,376 KB
testcase_24 AC 416 ms
21,376 KB
testcase_25 AC 65 ms
6,400 KB
testcase_26 AC 64 ms
6,400 KB
testcase_27 AC 212 ms
12,800 KB
testcase_28 AC 215 ms
12,672 KB
testcase_29 AC 267 ms
14,720 KB
testcase_30 AC 262 ms
14,720 KB
testcase_31 AC 354 ms
18,432 KB
testcase_32 AC 357 ms
18,432 KB
testcase_33 AC 255 ms
14,464 KB
testcase_34 AC 259 ms
14,464 KB
testcase_35 AC 350 ms
18,048 KB
testcase_36 AC 348 ms
17,920 KB
testcase_37 AC 71 ms
6,656 KB
testcase_38 AC 71 ms
6,784 KB
testcase_39 AC 56 ms
6,092 KB
testcase_40 AC 55 ms
6,016 KB
testcase_41 AC 121 ms
8,704 KB
testcase_42 AC 120 ms
8,832 KB
testcase_43 AC 100 ms
7,936 KB
testcase_44 AC 641 ms
30,720 KB
testcase_45 AC 272 ms
14,976 KB
testcase_46 AC 93 ms
7,296 KB
testcase_47 AC 464 ms
22,272 KB
testcase_48 AC 432 ms
22,016 KB
testcase_49 AC 438 ms
22,400 KB
testcase_50 AC 334 ms
17,920 KB
testcase_51 AC 18 ms
5,376 KB
testcase_52 AC 577 ms
27,392 KB
testcase_53 AC 668 ms
31,872 KB
testcase_54 AC 698 ms
32,000 KB
testcase_55 AC 695 ms
31,872 KB
testcase_56 AC 694 ms
31,872 KB
testcase_57 AC 695 ms
31,744 KB
testcase_58 AC 694 ms
31,888 KB
testcase_59 AC 687 ms
31,872 KB
testcase_60 AC 672 ms
31,872 KB
testcase_61 AC 655 ms
31,872 KB
testcase_62 AC 671 ms
31,872 KB
testcase_63 AC 679 ms
31,872 KB
testcase_64 AC 690 ms
31,744 KB
testcase_65 AC 679 ms
31,980 KB
testcase_66 AC 680 ms
31,872 KB
testcase_67 AC 715 ms
32,000 KB
testcase_68 AC 680 ms
31,872 KB
testcase_69 AC 629 ms
31,744 KB
testcase_70 AC 645 ms
31,872 KB
testcase_71 AC 635 ms
31,872 KB
testcase_72 AC 695 ms
32,000 KB
testcase_73 AC 632 ms
31,872 KB
testcase_74 AC 627 ms
31,872 KB
testcase_75 AC 622 ms
31,872 KB
testcase_76 AC 620 ms
31,812 KB
testcase_77 AC 622 ms
31,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

func main()
	var n: int :: cui@inputInt()
	var k: int :: cui@inputInt()
	var m: int :: cui@inputInt()
	var p: []int :: #[n]int
	var e: []int :: #[n]int
	var a: []int :: #[n]int
	var h: []int :: #[n]int
	for i(0, n - 1)
		do p[i] :: cui@inputInt()
	end for
	for i(0, n - 1)
		do e[i] :: cui@inputInt()
	end for
	for i(0, n - 1)
		do a[i] :: cui@inputInt()
	end for
	for i(0, n - 1)
		do h[i] :: cui@inputInt()
	end for
	do p.sort()
	do e.sort()
	do a.sort()
	do h.sort()
	
	var x: [][]int :: #[n, 4]int
	for i(0, n - 1)
		do x[i][0] :: p[i]
		do x[i][1] :: e[i]
		do x[i][2] :: a[i]
		do x[i][3] :: h[i]
	end for
	
	var ans: int :: 0
	for i(0, n - 1)
		do x[i].sort()
		var d: int :: x[i].max() - x[i].min()
		do ans :+ modPow(d, k, m)
	end for
	do ans :% m
	do cui@print("\{ans}\n")
	
	func modPow(a: int, b: int, mod: int): int
		if(b = 0)
			ret 1
		end if
		var res: int :: modPow(a, b / 2, mod)
		do res :: res * res % mod
		if(b % 2 = 1)
			do res :: res * a % mod
		end if
		ret res
	end func
end func
0