結果

問題 No.2873 Kendall's Tau
ユーザー 寝癖寝癖
提出日時 2024-07-09 23:03:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 203 bytes
コンパイル時間 661 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 195,764 KB
最終ジャッジ日時 2024-09-15 11:55:18
合計ジャッジ時間 13,991 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2,387 ms
99,444 KB
testcase_01 AC 2,365 ms
100,216 KB
testcase_02 AC 2,373 ms
100,340 KB
testcase_03 AC 2,373 ms
99,588 KB
testcase_04 AC 2,370 ms
99,316 KB
testcase_05 AC 2,365 ms
100,344 KB
testcase_06 AC 2,363 ms
99,716 KB
testcase_07 AC 3,827 ms
195,128 KB
testcase_08 AC 3,782 ms
194,600 KB
testcase_09 AC 3,786 ms
195,764 KB
testcase_10 AC 3,718 ms
194,824 KB
testcase_11 AC 3,785 ms
194,804 KB
testcase_12 AC 3,698 ms
191,912 KB
testcase_13 AC 2,757 ms
127,988 KB
testcase_14 AC 3,419 ms
173,108 KB
testcase_15 AC 2,601 ms
113,544 KB
testcase_16 AC 2,607 ms
115,368 KB
testcase_17 AC 3,390 ms
168,456 KB
testcase_18 AC 3,142 ms
149,640 KB
testcase_19 AC 3,343 ms
166,324 KB
testcase_20 AC 2,592 ms
114,288 KB
testcase_21 AC 3,169 ms
155,636 KB
testcase_22 AC 2,719 ms
123,056 KB
testcase_23 AC 3,161 ms
156,712 KB
testcase_24 AC 2,468 ms
104,960 KB
testcase_25 AC 2,589 ms
113,464 KB
testcase_26 AC 3,389 ms
169,392 KB
testcase_27 AC 2,985 ms
141,188 KB
testcase_28 TLE -
testcase_29 AC 3,613 ms
181,340 KB
testcase_30 AC 2,528 ms
109,428 KB
testcase_31 AC 2,748 ms
122,400 KB
testcase_32 AC 3,207 ms
155,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
	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])

if __name__ == '__main__':
    main()
0