結果
| 問題 | No.2873 Kendall's Tau |
| コンテスト | |
| ユーザー |
kwm_t
|
| 提出日時 | 2024-09-06 23:34:06 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0 + ACL) |
| 結果 |
AC
不安定
|
| 実行時間 | 3,776 ms / 4,500 ms |
| + 232µs | |
| コード長 | 203 bytes |
| 記録 | |
| コンパイル時間 | 344 ms |
| コンパイル使用メモリ | 21,468 KB |
| 実行使用メモリ | 221,456 KB |
| 最終ジャッジ日時 | 2026-09-04 06:27:47 |
| 合計ジャッジ時間 | 125,467 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 30 |
ソースコード
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()
kwm_t