結果

問題 No.338 アンケート機能
ユーザー roiti46roiti46
提出日時 2016-01-29 22:31:17
言語 Python2
(2.7.18)
結果
AC  
実行時間 431 ms / 2,000 ms
コード長 360 bytes
コンパイル時間 372 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 8,320 KB
最終ジャッジ日時 2024-11-08 02:47:17
合計ジャッジ時間 15,270 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 430 ms
8,192 KB
testcase_01 AC 426 ms
8,148 KB
testcase_02 AC 420 ms
8,192 KB
testcase_03 AC 423 ms
8,148 KB
testcase_04 AC 421 ms
8,192 KB
testcase_05 AC 421 ms
8,064 KB
testcase_06 AC 422 ms
8,148 KB
testcase_07 AC 419 ms
8,192 KB
testcase_08 AC 422 ms
8,276 KB
testcase_09 AC 422 ms
8,064 KB
testcase_10 AC 424 ms
8,320 KB
testcase_11 AC 425 ms
8,148 KB
testcase_12 AC 423 ms
8,192 KB
testcase_13 AC 424 ms
8,152 KB
testcase_14 AC 424 ms
8,192 KB
testcase_15 AC 422 ms
8,148 KB
testcase_16 AC 422 ms
8,148 KB
testcase_17 AC 424 ms
8,192 KB
testcase_18 AC 424 ms
8,276 KB
testcase_19 AC 422 ms
8,148 KB
testcase_20 AC 423 ms
8,148 KB
testcase_21 AC 421 ms
8,276 KB
testcase_22 AC 423 ms
8,148 KB
testcase_23 AC 421 ms
8,192 KB
testcase_24 AC 431 ms
8,192 KB
testcase_25 AC 424 ms
8,192 KB
testcase_26 AC 421 ms
8,148 KB
testcase_27 AC 425 ms
8,148 KB
testcase_28 AC 424 ms
8,148 KB
testcase_29 AC 422 ms
8,192 KB
testcase_30 AC 423 ms
8,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-
import sys,copy,math,heapq,itertools as it,fractions,re,bisect,collections as coll

A, B = map(int, raw_input().split())

ans = 1e10
for a in xrange(1000):
    for b in xrange(1, 1000) if a == 0 else xrange(1000):
        if round(100.0*a/(a + b), 0) == A and round(100.0*b/(a + b), 0) == B:
            ans = min(ans, a + b)
print ans
0