結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,064 KB
testcase_01 AC 40 ms
53,884 KB
testcase_02 AC 39 ms
52,200 KB
testcase_03 AC 38 ms
53,808 KB
testcase_04 AC 39 ms
52,632 KB
testcase_05 AC 39 ms
52,788 KB
testcase_06 AC 38 ms
54,004 KB
testcase_07 AC 39 ms
52,624 KB
testcase_08 AC 37 ms
53,060 KB
testcase_09 AC 39 ms
52,664 KB
testcase_10 AC 39 ms
52,816 KB
testcase_11 AC 39 ms
53,124 KB
testcase_12 AC 39 ms
52,812 KB
testcase_13 AC 39 ms
53,248 KB
testcase_14 AC 38 ms
53,232 KB
testcase_15 AC 38 ms
53,608 KB
testcase_16 AC 39 ms
53,792 KB
testcase_17 AC 38 ms
52,776 KB
testcase_18 AC 38 ms
52,752 KB
testcase_19 AC 38 ms
53,204 KB
testcase_20 AC 39 ms
52,756 KB
testcase_21 AC 39 ms
52,632 KB
testcase_22 AC 38 ms
53,516 KB
testcase_23 AC 38 ms
54,252 KB
testcase_24 AC 39 ms
52,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    from math import gcd
    input = sys.stdin.readline

    a, b = input().split(".")
    a = int(a) * 1000 + int(b)

    g = gcd(a, 1000)
    upper = a // g
    lower = 1000 // g
    ans = upper - 1 + lower - 1 + (upper + lower) // 2 + abs(upper - lower) // 2
    if (upper + lower) % 2 == 0:
        S = "A"
    else:
        if lower & 1:
            S = "B"
        else:
            S = "C"
    print(S, ans)


if __name__ == '__main__':
    main()
0