結果

問題 No.1359 [Zelkova 3rd Tune] 四人セゾン
ユーザー simansiman
提出日時 2021-12-18 04:27:46
言語 Ruby
(3.3.0)
結果
AC  
実行時間 716 ms / 2,000 ms
コード長 287 bytes
コンパイル時間 723 ms
コンパイル使用メモリ 7,168 KB
実行使用メモリ 54,144 KB
最終ジャッジ日時 2024-09-15 05:46:21
合計ジャッジ時間 48,614 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
12,032 KB
testcase_01 AC 87 ms
12,032 KB
testcase_02 AC 86 ms
12,160 KB
testcase_03 AC 412 ms
35,968 KB
testcase_04 AC 410 ms
35,968 KB
testcase_05 AC 396 ms
35,712 KB
testcase_06 AC 396 ms
35,712 KB
testcase_07 AC 533 ms
37,376 KB
testcase_08 AC 530 ms
37,504 KB
testcase_09 AC 214 ms
20,224 KB
testcase_10 AC 215 ms
20,224 KB
testcase_11 AC 694 ms
51,584 KB
testcase_12 AC 699 ms
51,804 KB
testcase_13 AC 459 ms
35,840 KB
testcase_14 AC 458 ms
35,840 KB
testcase_15 AC 409 ms
35,840 KB
testcase_16 AC 412 ms
35,712 KB
testcase_17 AC 677 ms
41,600 KB
testcase_18 AC 681 ms
41,472 KB
testcase_19 AC 669 ms
51,840 KB
testcase_20 AC 664 ms
51,840 KB
testcase_21 AC 702 ms
54,144 KB
testcase_22 AC 699 ms
54,144 KB
testcase_23 AC 479 ms
36,992 KB
testcase_24 AC 483 ms
36,992 KB
testcase_25 AC 149 ms
16,128 KB
testcase_26 AC 150 ms
16,256 KB
testcase_27 AC 288 ms
25,856 KB
testcase_28 AC 289 ms
25,856 KB
testcase_29 AC 334 ms
26,880 KB
testcase_30 AC 335 ms
27,008 KB
testcase_31 AC 426 ms
35,456 KB
testcase_32 AC 423 ms
35,664 KB
testcase_33 AC 325 ms
27,136 KB
testcase_34 AC 326 ms
27,008 KB
testcase_35 AC 412 ms
35,840 KB
testcase_36 AC 408 ms
35,968 KB
testcase_37 AC 150 ms
16,128 KB
testcase_38 AC 150 ms
16,128 KB
testcase_39 AC 139 ms
16,512 KB
testcase_40 AC 138 ms
16,256 KB
testcase_41 AC 205 ms
19,584 KB
testcase_42 AC 204 ms
19,840 KB
testcase_43 AC 181 ms
19,200 KB
testcase_44 AC 674 ms
41,856 KB
testcase_45 AC 339 ms
26,880 KB
testcase_46 AC 173 ms
16,768 KB
testcase_47 AC 504 ms
36,992 KB
testcase_48 AC 489 ms
36,864 KB
testcase_49 AC 502 ms
36,992 KB
testcase_50 AC 406 ms
35,968 KB
testcase_51 AC 103 ms
12,800 KB
testcase_52 AC 671 ms
53,248 KB
testcase_53 AC 696 ms
43,136 KB
testcase_54 AC 709 ms
43,136 KB
testcase_55 AC 706 ms
43,136 KB
testcase_56 AC 711 ms
43,136 KB
testcase_57 AC 711 ms
43,136 KB
testcase_58 AC 712 ms
43,264 KB
testcase_59 AC 709 ms
43,264 KB
testcase_60 AC 702 ms
43,136 KB
testcase_61 AC 688 ms
43,264 KB
testcase_62 AC 716 ms
43,136 KB
testcase_63 AC 709 ms
43,008 KB
testcase_64 AC 706 ms
43,136 KB
testcase_65 AC 704 ms
43,136 KB
testcase_66 AC 705 ms
43,264 KB
testcase_67 AC 712 ms
43,136 KB
testcase_68 AC 699 ms
43,008 KB
testcase_69 AC 681 ms
43,136 KB
testcase_70 AC 691 ms
43,136 KB
testcase_71 AC 673 ms
43,008 KB
testcase_72 AC 709 ms
43,264 KB
testcase_73 AC 592 ms
43,136 KB
testcase_74 AC 587 ms
43,264 KB
testcase_75 AC 591 ms
43,264 KB
testcase_76 AC 591 ms
43,136 KB
testcase_77 AC 593 ms
43,136 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, K, M = gets.split.map(&:to_i)
P = gets.split.map(&:to_i).sort
E = gets.split.map(&:to_i).sort
A = gets.split.map(&:to_i).sort
H = gets.split.map(&:to_i).sort

ans = 0

N.times do |i|
  min, max = [P[i], E[i], A[i], H[i]].minmax
  ans += (max - min).pow(K, M)
  ans %= M
end

puts ans
0