結果

問題 No.1359 [Zelkova 3rd Tune] 四人セゾン
ユーザー tatt61880tatt61880
提出日時 2021-02-20 19:49:12
言語 Kuin
(KuinC++ v.2021.9.17)
結果
AC  
実行時間 747 ms / 2,000 ms
コード長 889 bytes
コンパイル時間 2,282 ms
コンパイル使用メモリ 147,988 KB
実行使用メモリ 9,984 KB
最終ジャッジ日時 2024-09-16 11:31:41
合計ジャッジ時間 38,752 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 312 ms
6,912 KB
testcase_04 AC 309 ms
6,912 KB
testcase_05 AC 299 ms
6,784 KB
testcase_06 AC 474 ms
6,912 KB
testcase_07 AC 426 ms
8,192 KB
testcase_08 AC 430 ms
8,320 KB
testcase_09 AC 120 ms
5,376 KB
testcase_10 AC 119 ms
5,376 KB
testcase_11 AC 546 ms
9,344 KB
testcase_12 AC 542 ms
9,344 KB
testcase_13 AC 341 ms
7,296 KB
testcase_14 AC 344 ms
7,424 KB
testcase_15 AC 311 ms
6,912 KB
testcase_16 AC 313 ms
6,784 KB
testcase_17 AC 568 ms
9,472 KB
testcase_18 AC 567 ms
9,600 KB
testcase_19 AC 491 ms
8,832 KB
testcase_20 AC 493 ms
8,704 KB
testcase_21 AC 655 ms
9,216 KB
testcase_22 AC 534 ms
9,088 KB
testcase_23 AC 365 ms
7,680 KB
testcase_24 AC 462 ms
7,680 KB
testcase_25 AC 60 ms
5,376 KB
testcase_26 AC 56 ms
5,376 KB
testcase_27 AC 187 ms
5,760 KB
testcase_28 AC 257 ms
5,760 KB
testcase_29 AC 225 ms
6,144 KB
testcase_30 AC 231 ms
6,016 KB
testcase_31 AC 335 ms
7,040 KB
testcase_32 AC 305 ms
6,912 KB
testcase_33 AC 242 ms
6,016 KB
testcase_34 AC 232 ms
6,144 KB
testcase_35 AC 342 ms
6,784 KB
testcase_36 AC 307 ms
6,912 KB
testcase_37 AC 79 ms
5,376 KB
testcase_38 AC 62 ms
5,376 KB
testcase_39 AC 53 ms
5,376 KB
testcase_40 AC 50 ms
5,376 KB
testcase_41 AC 113 ms
5,376 KB
testcase_42 AC 107 ms
5,376 KB
testcase_43 AC 119 ms
5,376 KB
testcase_44 AC 633 ms
9,728 KB
testcase_45 AC 247 ms
6,272 KB
testcase_46 AC 81 ms
5,376 KB
testcase_47 AC 454 ms
7,808 KB
testcase_48 AC 386 ms
7,680 KB
testcase_49 AC 397 ms
7,808 KB
testcase_50 AC 306 ms
6,912 KB
testcase_51 AC 16 ms
5,376 KB
testcase_52 AC 515 ms
9,088 KB
testcase_53 AC 588 ms
9,856 KB
testcase_54 AC 727 ms
9,984 KB
testcase_55 AC 598 ms
9,984 KB
testcase_56 AC 594 ms
9,856 KB
testcase_57 AC 600 ms
9,856 KB
testcase_58 AC 605 ms
9,984 KB
testcase_59 AC 600 ms
9,856 KB
testcase_60 AC 583 ms
9,984 KB
testcase_61 AC 579 ms
9,856 KB
testcase_62 AC 614 ms
9,984 KB
testcase_63 AC 611 ms
9,856 KB
testcase_64 AC 747 ms
9,856 KB
testcase_65 AC 659 ms
9,984 KB
testcase_66 AC 597 ms
9,856 KB
testcase_67 AC 670 ms
9,984 KB
testcase_68 AC 619 ms
9,984 KB
testcase_69 AC 553 ms
9,984 KB
testcase_70 AC 639 ms
9,856 KB
testcase_71 AC 638 ms
9,856 KB
testcase_72 AC 695 ms
9,984 KB
testcase_73 AC 537 ms
9,984 KB
testcase_74 AC 541 ms
9,984 KB
testcase_75 AC 537 ms
9,984 KB
testcase_76 AC 556 ms
9,856 KB
testcase_77 AC 560 ms
9,856 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 ans: int :: 0
	for i(0, n - 1)
		var d: int :: [p[i], e[i], a[i], h[i]].max() - [p[i], e[i], a[i], h[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