結果
問題 | No.1464 Number Conversion |
ユーザー | Theta |
提出日時 | 2022-10-25 13:12:12 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 654 bytes |
コンパイル時間 | 82 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-07-03 12:37:35 |
合計ジャッジ時間 | 1,720 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
10,624 KB |
testcase_01 | AC | 26 ms
10,624 KB |
testcase_02 | AC | 26 ms
10,752 KB |
testcase_03 | AC | 26 ms
10,624 KB |
testcase_04 | AC | 26 ms
10,624 KB |
testcase_05 | WA | - |
testcase_06 | AC | 28 ms
10,624 KB |
testcase_07 | AC | 27 ms
10,624 KB |
testcase_08 | AC | 25 ms
10,624 KB |
testcase_09 | AC | 26 ms
10,752 KB |
testcase_10 | AC | 26 ms
10,752 KB |
testcase_11 | AC | 27 ms
10,624 KB |
testcase_12 | AC | 27 ms
10,624 KB |
testcase_13 | AC | 26 ms
10,624 KB |
testcase_14 | AC | 26 ms
10,752 KB |
testcase_15 | AC | 27 ms
10,624 KB |
testcase_16 | AC | 27 ms
10,624 KB |
testcase_17 | AC | 28 ms
10,752 KB |
testcase_18 | WA | - |
testcase_19 | AC | 27 ms
10,752 KB |
testcase_20 | AC | 27 ms
10,624 KB |
testcase_21 | AC | 26 ms
10,624 KB |
testcase_22 | AC | 27 ms
10,624 KB |
testcase_23 | AC | 26 ms
10,624 KB |
testcase_24 | AC | 25 ms
10,752 KB |
testcase_25 | AC | 26 ms
10,752 KB |
testcase_26 | AC | 26 ms
10,752 KB |
testcase_27 | AC | 26 ms
10,624 KB |
testcase_28 | AC | 26 ms
10,624 KB |
ソースコード
def gcd(*numbers: int) -> int: if len(numbers) == 1: return numbers[0] if len(numbers) == 2: a, b = numbers if a < b: a, b = b, a while True: if a % b == 0: return b a, b = b, a % b first_gcd = gcd(*numbers[:2]) return gcd(first_gcd, *numbers[2:]) def main(): X = float(input()) if X == 0: print("0/1") return X_parent = int(1e8) X_child = int(X*X_parent) gcd_num = gcd(X_child, X_parent) X_child //= gcd_num X_parent //= gcd_num print(f"{X_child}/{X_parent}") if __name__ == "__main__": main()