結果

問題 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)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 123 bytes
コンパイル時間 301 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 194,492 KB
最終ジャッジ日時 2024-09-21 19:43:34
合計ジャッジ時間 13,825 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,398 ms
95,536 KB
testcase_01 AC 2,391 ms
95,272 KB
testcase_02 AC 2,379 ms
95,528 KB
testcase_03 AC 2,382 ms
95,408 KB
testcase_04 AC 2,414 ms
95,404 KB
testcase_05 AC 2,394 ms
95,532 KB
testcase_06 AC 2,416 ms
95,528 KB
testcase_07 AC 3,880 ms
193,460 KB
testcase_08 AC 3,792 ms
193,720 KB
testcase_09 TLE -
testcase_10 AC 3,787 ms
194,492 KB
testcase_11 AC 3,832 ms
193,724 KB
testcase_12 AC 3,785 ms
189,648 KB
testcase_13 AC 2,929 ms
122,852 KB
testcase_14 AC 3,507 ms
171,508 KB
testcase_15 AC 2,663 ms
108,136 KB
testcase_16 AC 2,628 ms
109,996 KB
testcase_17 AC 3,496 ms
168,028 KB
testcase_18 AC 3,201 ms
147,612 KB
testcase_19 AC 3,438 ms
163,588 KB
testcase_20 AC 2,655 ms
109,028 KB
testcase_21 AC 3,222 ms
153,316 KB
testcase_22 AC 2,798 ms
116,720 KB
testcase_23 AC 3,230 ms
153,492 KB
testcase_24 AC 2,534 ms
99,108 KB
testcase_25 AC 2,648 ms
108,004 KB
testcase_26 AC 3,504 ms
167,556 KB
testcase_27 AC 3,097 ms
137,956 KB
testcase_28 AC 3,609 ms
177,228 KB
testcase_29 AC 3,623 ms
181,748 KB
testcase_30 AC 2,563 ms
104,856 KB
testcase_31 AC 2,750 ms
115,736 KB
testcase_32 AC 3,224 ms
152,592 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