結果

問題 No.1624 三角形の反射
ユーザー koba-e964koba-e964
提出日時 2021-11-11 00:11:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 384 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 53,676 KB
最終ジャッジ日時 2024-11-21 17:56:52
合計ジャッジ時間 2,110 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,072 KB
testcase_01 AC 37 ms
52,652 KB
testcase_02 AC 38 ms
52,744 KB
testcase_03 AC 36 ms
52,824 KB
testcase_04 AC 37 ms
53,676 KB
testcase_05 AC 37 ms
52,404 KB
testcase_06 AC 39 ms
52,376 KB
testcase_07 AC 39 ms
52,336 KB
testcase_08 AC 38 ms
52,812 KB
testcase_09 AC 39 ms
53,604 KB
testcase_10 AC 38 ms
53,576 KB
testcase_11 AC 40 ms
53,120 KB
testcase_12 AC 36 ms
52,380 KB
testcase_13 AC 36 ms
52,400 KB
testcase_14 AC 38 ms
52,928 KB
testcase_15 AC 38 ms
52,352 KB
testcase_16 AC 39 ms
53,400 KB
testcase_17 AC 37 ms
53,548 KB
testcase_18 AC 37 ms
52,992 KB
testcase_19 AC 39 ms
52,256 KB
testcase_20 AC 38 ms
53,352 KB
testcase_21 AC 38 ms
53,092 KB
testcase_22 AC 38 ms
52,988 KB
testcase_23 AC 36 ms
52,468 KB
testcase_24 AC 38 ms
52,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

import math

a = float(input())
a = int(math.floor(1000 * a + 0.5))

def gcd(x, y):
    while y != 0:
        r = x % y
        x = y
        y = r
    return x


g = gcd(a, 1000)
p = a // g
q = 1000 // g

kind = 'A'
if p % 2 == 0:
    kind = 'B'
if q % 2 == 0:
    kind = 'C'

ans = p + q - 2 + (p + q) // 2 + abs(p - q) // 2
print('{} {}'.format(kind, ans))
0