結果

問題 No.1624 三角形の反射
ユーザー hir355hir355
提出日時 2021-07-23 21:42:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 282 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 53,804 KB
最終ジャッジ日時 2024-07-02 09:50:22
合計ジャッジ時間 1,977 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,784 KB
testcase_01 AC 41 ms
52,708 KB
testcase_02 AC 39 ms
53,016 KB
testcase_03 AC 38 ms
53,028 KB
testcase_04 AC 40 ms
52,524 KB
testcase_05 AC 38 ms
52,340 KB
testcase_06 AC 39 ms
53,804 KB
testcase_07 AC 39 ms
53,292 KB
testcase_08 AC 39 ms
53,296 KB
testcase_09 AC 39 ms
53,296 KB
testcase_10 AC 43 ms
52,064 KB
testcase_11 AC 39 ms
53,528 KB
testcase_12 AC 38 ms
52,128 KB
testcase_13 AC 40 ms
52,072 KB
testcase_14 AC 38 ms
52,616 KB
testcase_15 AC 39 ms
53,644 KB
testcase_16 AC 38 ms
53,408 KB
testcase_17 AC 39 ms
51,940 KB
testcase_18 AC 39 ms
53,004 KB
testcase_19 AC 39 ms
51,996 KB
testcase_20 AC 38 ms
52,140 KB
testcase_21 AC 39 ms
52,492 KB
testcase_22 AC 38 ms
52,600 KB
testcase_23 AC 38 ms
53,260 KB
testcase_24 AC 38 ms
53,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
a, b = map(int, input().split('.'))
t = a * 1000 + b
g = gcd(t, 1000)
y = t // gcd(t, 1000)
x = 1000 // gcd(t, 1000)
c = x + y - 2 + (x + y) // 2 + abs(x - y) // 2
if (x + y) % 2 == 0:
    print('A', c)
elif x % 2 == 0:
    print('C', c)
else:
    print('B', c)
0