結果

問題 No.2873 Kendall's Tau
ユーザー Cool-TachibanäCool-Tachibanä
提出日時 2024-09-06 22:59:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 4,263 ms / 4,500 ms
コード長 200 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 174,060 KB
最終ジャッジ日時 2024-09-22 22:47:14
合計ジャッジ時間 99,052 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4,263 ms
99,488 KB
testcase_01 AC 2,311 ms
99,504 KB
testcase_02 AC 2,306 ms
99,616 KB
testcase_03 AC 2,376 ms
99,612 KB
testcase_04 AC 2,311 ms
99,640 KB
testcase_05 AC 2,326 ms
99,616 KB
testcase_06 AC 2,312 ms
99,744 KB
testcase_07 AC 3,161 ms
117,828 KB
testcase_08 AC 3,103 ms
116,408 KB
testcase_09 AC 3,111 ms
117,756 KB
testcase_10 AC 3,108 ms
117,600 KB
testcase_11 AC 3,083 ms
117,640 KB
testcase_12 AC 3,049 ms
116,984 KB
testcase_13 AC 2,573 ms
104,828 KB
testcase_14 AC 2,903 ms
112,400 KB
testcase_15 AC 2,455 ms
102,220 KB
testcase_16 AC 2,448 ms
102,028 KB
testcase_17 AC 2,893 ms
111,124 KB
testcase_18 AC 2,749 ms
106,788 KB
testcase_19 AC 2,999 ms
110,948 KB
testcase_20 AC 2,459 ms
100,216 KB
testcase_21 AC 2,824 ms
106,384 KB
testcase_22 AC 2,543 ms
101,456 KB
testcase_23 AC 2,781 ms
109,028 KB
testcase_24 AC 2,379 ms
101,136 KB
testcase_25 AC 2,445 ms
101,624 KB
testcase_26 AC 2,887 ms
111,648 KB
testcase_27 AC 2,685 ms
104,592 KB
testcase_28 AC 2,944 ms
113,068 KB
testcase_29 AC 2,998 ms
114,644 KB
testcase_30 AC 2,428 ms
98,048 KB
testcase_31 AC 2,510 ms
103,528 KB
testcase_32 AC 2,788 ms
174,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
X, Y = [], []
for _ in range(N):
    Xi, Yi = map(int, input().split())
    X.append(Xi)
    Y.append(Yi)

import scipy.stats as stats
tau, p_value = stats.kendalltau(X, Y)
print(tau)
0