結果

問題 No.338 アンケート機能
ユーザー lloyzlloyz
提出日時 2023-02-22 20:44:15
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,159 ms / 2,000 ms
コード長 516 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-07-22 21:35:03
合計ジャッジ時間 37,268 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,119 ms
11,136 KB
testcase_01 AC 1,066 ms
11,264 KB
testcase_02 AC 1,074 ms
11,136 KB
testcase_03 AC 1,087 ms
11,136 KB
testcase_04 AC 1,113 ms
11,264 KB
testcase_05 AC 1,114 ms
11,136 KB
testcase_06 AC 1,140 ms
11,264 KB
testcase_07 AC 1,159 ms
11,136 KB
testcase_08 AC 1,086 ms
11,136 KB
testcase_09 AC 1,091 ms
11,136 KB
testcase_10 AC 1,075 ms
11,136 KB
testcase_11 AC 1,076 ms
11,136 KB
testcase_12 AC 1,062 ms
11,136 KB
testcase_13 AC 1,082 ms
11,136 KB
testcase_14 AC 1,081 ms
11,136 KB
testcase_15 AC 1,062 ms
11,136 KB
testcase_16 AC 1,076 ms
11,264 KB
testcase_17 AC 1,050 ms
11,136 KB
testcase_18 AC 1,075 ms
11,136 KB
testcase_19 AC 1,121 ms
11,136 KB
testcase_20 AC 1,124 ms
11,136 KB
testcase_21 AC 1,115 ms
11,264 KB
testcase_22 AC 1,080 ms
11,136 KB
testcase_23 AC 1,092 ms
11,136 KB
testcase_24 AC 1,063 ms
11,136 KB
testcase_25 AC 1,083 ms
11,136 KB
testcase_26 AC 1,149 ms
11,136 KB
testcase_27 AC 1,103 ms
11,136 KB
testcase_28 AC 1,098 ms
11,136 KB
testcase_29 AC 1,142 ms
11,136 KB
testcase_30 AC 1,095 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import Decimal, ROUND_HALF_UP

a, b = map(int, input().split())

ans = 10000
for i in range(501):
    for j in range(501):
        if i == 0 and j == 0:
            continue
        ii = Decimal(str(i))
        jj = Decimal(str(j))
        ra = 100 * ii / (ii + jj)
        rb = 100 * jj / (ii + jj)
        ra = ra.quantize(Decimal('0'), rounding=ROUND_HALF_UP)
        rb = rb.quantize(Decimal('0'), rounding=ROUND_HALF_UP)
        if ra == a and rb == b:
            ans = min(ans, i + j)
print(ans)
0