結果
問題 | No.168 ものさし |
ユーザー | sjiki |
提出日時 | 2024-05-07 12:02:01 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 798 bytes |
コンパイル時間 | 473 ms |
コンパイル使用メモリ | 81,792 KB |
実行使用メモリ | 76,160 KB |
最終ジャッジ日時 | 2024-05-07 12:02:04 |
合計ジャッジ時間 | 2,109 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
ソースコード
import sys import math def find_minimum_ruler_length(points): max_distance = 0 n = len(points) for i in range(n): for j in range(i + 1, n): x1, y1 = points[i] x2, y2 = points[j] distance = math.sqrt((x2 - x1) ** 2 + (y2 - y1) ** 2) max_distance = max(max_distance, distance) return max_distance def main(): input = sys.stdin.read data = input().split() n = int(data[0]) # 点の数 points = [] index = 1 for _ in range(n): x = int(data[index]) y = int(data[index + 1]) points.append((x, y)) index += 2 minimum_ruler_length = find_minimum_ruler_length(points) print(f"{minimum_ruler_length:.6f}") if __name__ == "__main__": main()