結果
問題 | No.2953 Maximum Right Triangle |
ユーザー | ntuda |
提出日時 | 2024-11-08 23:51:31 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 388 bytes |
コンパイル時間 | 680 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 52,992 KB |
最終ジャッジ日時 | 2024-11-08 23:51:33 |
合計ジャッジ時間 | 1,441 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
52,224 KB |
testcase_01 | AC | 43 ms
52,096 KB |
testcase_02 | AC | 45 ms
52,608 KB |
testcase_03 | WA | - |
testcase_04 | AC | 44 ms
52,992 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
ソースコード
from math import gcd def solve(): D,x,y = map(int,input().split()) if x == 0: print(D * y) return if y == 0: print(D * x) return if x < y: x,y = y,x t = gcd(x,y) xd = y // t yd = x // t a = (D - y) // yd a = min(a, x // xd) return (x ** 2 + y ** 2) * a // t for _ in range(int(input())): print(solve())