結果

問題 No.1624 三角形の反射
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2021-07-23 22:22:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 476 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 81,884 KB
実行使用メモリ 53,900 KB
最終ジャッジ日時 2024-07-02 09:52:32
合計ジャッジ時間 1,956 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,536 KB
testcase_01 AC 39 ms
52,876 KB
testcase_02 AC 40 ms
53,204 KB
testcase_03 AC 38 ms
53,052 KB
testcase_04 AC 39 ms
52,444 KB
testcase_05 AC 40 ms
52,588 KB
testcase_06 AC 39 ms
53,532 KB
testcase_07 AC 39 ms
53,656 KB
testcase_08 AC 39 ms
52,140 KB
testcase_09 AC 39 ms
52,944 KB
testcase_10 AC 39 ms
53,900 KB
testcase_11 AC 39 ms
52,916 KB
testcase_12 AC 39 ms
52,568 KB
testcase_13 AC 39 ms
53,560 KB
testcase_14 AC 38 ms
53,392 KB
testcase_15 AC 38 ms
53,420 KB
testcase_16 AC 39 ms
52,864 KB
testcase_17 AC 38 ms
52,340 KB
testcase_18 AC 40 ms
52,956 KB
testcase_19 AC 39 ms
52,428 KB
testcase_20 AC 38 ms
52,464 KB
testcase_21 AC 39 ms
53,856 KB
testcase_22 AC 39 ms
53,076 KB
testcase_23 AC 39 ms
52,880 KB
testcase_24 AC 39 ms
53,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""

折り返して考える
最初に付く整数頂点がどれかを考えればよい

偶奇がひとしい = A
xが奇数 = B
xが偶数 = C

反射回数は


"""

import math
import bisect

a = int(float(input()) * 1000 + 0.1)

yt = (a * 1000 // math.gcd(a,1000)) // 1000
xt = (yt*1000) // a

if xt % 2 == yt % 2:
    c = "A"
elif xt % 2 == 1:
    c = "B"
else:
    c = "C"

#print (c)

ans = (xt-1) + (yt-1) + (max(xt,yt))

if c != "A":
    ans -= 1

print (c,ans)
0