結果

問題 No.1624 三角形の反射
ユーザー koba-e964koba-e964
提出日時 2021-11-11 00:10:32
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 388 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 54,564 KB
最終ジャッジ日時 2024-05-01 13:15:38
合計ジャッジ時間 1,929 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,316 KB
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 AC 37 ms
53,128 KB
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 AC 36 ms
53,000 KB
testcase_23 WA -
testcase_24 AC 37 ms
52,196 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 + 1) // 2 + abs(p - q) // 2
print('{} {}'.format(kind, ans))
0