結果

問題 No.2873 Kendall's Tau
ユーザー 👑 p-adicp-adic
提出日時 2024-09-08 20:52:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 3,520 ms / 4,500 ms
コード長 123 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 193,592 KB
最終ジャッジ日時 2024-09-16 08:15:33
合計ジャッジ時間 95,190 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,335 ms
95,408 KB
testcase_01 AC 2,002 ms
95,072 KB
testcase_02 AC 2,005 ms
95,144 KB
testcase_03 AC 2,066 ms
95,152 KB
testcase_04 AC 2,073 ms
95,404 KB
testcase_05 AC 2,011 ms
95,144 KB
testcase_06 AC 2,020 ms
95,404 KB
testcase_07 AC 3,258 ms
193,584 KB
testcase_08 AC 3,158 ms
193,592 KB
testcase_09 AC 3,194 ms
193,224 KB
testcase_10 AC 3,205 ms
193,592 KB
testcase_11 AC 3,216 ms
193,348 KB
testcase_12 AC 3,159 ms
189,652 KB
testcase_13 AC 2,343 ms
123,540 KB
testcase_14 AC 2,955 ms
171,248 KB
testcase_15 AC 2,185 ms
107,920 KB
testcase_16 AC 2,254 ms
108,768 KB
testcase_17 AC 2,900 ms
166,616 KB
testcase_18 AC 2,730 ms
147,044 KB
testcase_19 AC 2,867 ms
163,984 KB
testcase_20 AC 2,168 ms
108,772 KB
testcase_21 AC 2,735 ms
153,236 KB
testcase_22 AC 2,348 ms
116,384 KB
testcase_23 AC 2,715 ms
153,824 KB
testcase_24 AC 2,147 ms
99,088 KB
testcase_25 AC 2,189 ms
106,916 KB
testcase_26 AC 2,935 ms
166,952 KB
testcase_27 AC 2,522 ms
137,956 KB
testcase_28 AC 3,520 ms
176,820 KB
testcase_29 AC 3,161 ms
180,724 KB
testcase_30 AC 2,119 ms
103,696 KB
testcase_31 AC 2,286 ms
115,944 KB
testcase_32 AC 2,680 ms
152,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scipy
J=lambda:map(int,input().split())
print(scipy.stats.kendalltau(*map(list,zip(*[J()for _ in[0]*sum(J())])))[0])
0