結果
| 問題 | No.2873 Kendall's Tau |
| コンテスト | |
| ユーザー |
寝癖
|
| 提出日時 | 2024-07-06 12:21:47 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 3,768 ms / 4,500 ms |
| コード長 | 148 bytes |
| 記録 | |
| コンパイル時間 | 1,516 ms |
| コンパイル使用メモリ | 20,824 KB |
| 実行使用メモリ | 256,524 KB |
| 最終ジャッジ日時 | 2026-03-30 09:18:36 |
| 合計ジャッジ時間 | 49,218 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 30 |
ソースコード
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])
寝癖