結果

問題 No.2873 Kendall's Tau
ユーザー 寝癖寝癖
提出日時 2024-07-06 12:21:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 148 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 209,084 KB
最終ジャッジ日時 2024-07-09 22:44:57
合計ジャッジ時間 114,129 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 2,464 ms
96,716 KB
testcase_02 AC 2,483 ms
96,436 KB
testcase_03 AC 2,442 ms
96,588 KB
testcase_04 AC 2,585 ms
96,264 KB
testcase_05 AC 2,630 ms
96,140 KB
testcase_06 AC 2,498 ms
96,456 KB
testcase_07 AC 3,840 ms
194,368 KB
testcase_08 AC 3,824 ms
194,040 KB
testcase_09 AC 3,829 ms
194,508 KB
testcase_10 AC 3,815 ms
194,424 KB
testcase_11 AC 3,856 ms
194,044 KB
testcase_12 AC 3,774 ms
190,552 KB
testcase_13 AC 2,847 ms
125,820 KB
testcase_14 AC 3,503 ms
171,388 KB
testcase_15 AC 2,643 ms
111,096 KB
testcase_16 AC 2,715 ms
112,456 KB
testcase_17 AC 3,482 ms
167,372 KB
testcase_18 AC 3,198 ms
147,212 KB
testcase_19 AC 3,440 ms
163,172 KB
testcase_20 AC 2,648 ms
112,248 KB
testcase_21 AC 3,251 ms
154,100 KB
testcase_22 AC 2,779 ms
120,312 KB
testcase_23 AC 3,247 ms
154,064 KB
testcase_24 AC 2,530 ms
102,852 KB
testcase_25 AC 2,647 ms
110,532 KB
testcase_26 AC 3,484 ms
167,624 KB
testcase_27 AC 3,052 ms
138,988 KB
testcase_28 AC 3,648 ms
177,992 KB
testcase_29 AC 3,700 ms
182,088 KB
testcase_30 AC 2,577 ms
107,388 KB
testcase_31 AC 2,755 ms
119,368 KB
testcase_32 AC 3,255 ms
209,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from scipy.stats import kendalltau
N = int(input())
x, y = map(list, zip(*[map(int, input().split()) for _ in range(N)]))
print(kendalltau(x, y)[0])
0