結果

問題 No.2873 Kendall's Tau
ユーザー kwm_tkwm_t
提出日時 2024-09-06 23:34:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 203 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 228,588 KB
最終ジャッジ日時 2024-09-25 17:38:51
合計ジャッジ時間 101,111 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 2,169 ms
99,444 KB
testcase_02 AC 2,133 ms
99,716 KB
testcase_03 AC 2,138 ms
99,720 KB
testcase_04 AC 2,121 ms
99,592 KB
testcase_05 AC 2,140 ms
99,572 KB
testcase_06 AC 2,125 ms
99,576 KB
testcase_07 AC 3,591 ms
195,056 KB
testcase_08 AC 3,400 ms
194,720 KB
testcase_09 AC 3,363 ms
194,808 KB
testcase_10 AC 3,375 ms
194,868 KB
testcase_11 AC 3,374 ms
195,108 KB
testcase_12 AC 3,327 ms
191,324 KB
testcase_13 AC 2,492 ms
127,524 KB
testcase_14 AC 3,039 ms
172,276 KB
testcase_15 AC 2,326 ms
113,064 KB
testcase_16 AC 2,326 ms
114,672 KB
testcase_17 AC 3,012 ms
168,560 KB
testcase_18 AC 2,822 ms
149,512 KB
testcase_19 AC 3,004 ms
165,428 KB
testcase_20 AC 2,313 ms
114,552 KB
testcase_21 AC 2,824 ms
155,172 KB
testcase_22 AC 2,457 ms
122,244 KB
testcase_23 AC 2,856 ms
156,552 KB
testcase_24 AC 2,233 ms
105,080 KB
testcase_25 AC 2,345 ms
112,764 KB
testcase_26 AC 3,052 ms
168,944 KB
testcase_27 AC 2,656 ms
140,600 KB
testcase_28 AC 3,180 ms
176,944 KB
testcase_29 AC 3,268 ms
181,492 KB
testcase_30 AC 2,242 ms
109,428 KB
testcase_31 AC 2,622 ms
121,588 KB
testcase_32 AC 2,810 ms
228,588 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