結果

問題 No.338 アンケート機能
ユーザー はむ吉🐹はむ吉🐹
提出日時 2016-03-13 20:45:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 741 ms / 2,000 ms
コード長 794 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,392 KB
最終ジャッジ日時 2024-11-08 03:06:17
合計ジャッジ時間 21,069 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 612 ms
11,136 KB
testcase_01 AC 584 ms
11,136 KB
testcase_02 AC 606 ms
11,136 KB
testcase_03 AC 599 ms
11,136 KB
testcase_04 AC 584 ms
11,264 KB
testcase_05 AC 581 ms
11,136 KB
testcase_06 AC 588 ms
11,136 KB
testcase_07 AC 627 ms
11,264 KB
testcase_08 AC 590 ms
11,136 KB
testcase_09 AC 594 ms
11,264 KB
testcase_10 AC 617 ms
11,136 KB
testcase_11 AC 592 ms
11,136 KB
testcase_12 AC 589 ms
11,264 KB
testcase_13 AC 600 ms
11,136 KB
testcase_14 AC 602 ms
11,136 KB
testcase_15 AC 631 ms
11,136 KB
testcase_16 AC 593 ms
11,136 KB
testcase_17 AC 596 ms
11,136 KB
testcase_18 AC 605 ms
11,392 KB
testcase_19 AC 585 ms
11,136 KB
testcase_20 AC 580 ms
11,136 KB
testcase_21 AC 633 ms
11,264 KB
testcase_22 AC 595 ms
11,264 KB
testcase_23 AC 741 ms
11,264 KB
testcase_24 AC 579 ms
11,136 KB
testcase_25 AC 584 ms
11,264 KB
testcase_26 AC 598 ms
11,264 KB
testcase_27 AC 613 ms
11,136 KB
testcase_28 AC 588 ms
11,136 KB
testcase_29 AC 584 ms
11,264 KB
testcase_30 AC 595 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# -*- coding: utf-8 -*-

import decimal
import itertools


MAX_CAND = 500


def solve(a0, b0):
    answer = None
    with decimal.localcontext() as context:
        context.rounding = decimal.ROUND_HALF_UP
        answer = decimal.Decimal("Inf")
        gen = (context.create_decimal(i) for i in range(MAX_CAND))
        for a, b in itertools.product(gen, repeat=2):
            if a == b == 0:
                continue
            cond_a = context.quantize(100 * a / (a + b), 0) == a0
            cond_b = context.quantize(100 * b / (a + b), 0) == b0
            if cond_a and cond_b:
                answer = min(answer, int(a + b))
    return answer


def main():
    a0, b0 = map(int, input().split())
    print(solve(a0, b0))


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