結果

問題 No.338 アンケート機能
ユーザー 🍡yurahuna🍡yurahuna
提出日時 2016-04-28 21:44:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 358 bytes
コンパイル時間 390 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 75,520 KB
最終ジャッジ日時 2024-11-08 03:08:36
合計ジャッジ時間 3,683 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
75,520 KB
testcase_01 AC 73 ms
68,992 KB
testcase_02 AC 67 ms
62,080 KB
testcase_03 AC 78 ms
69,888 KB
testcase_04 AC 70 ms
65,920 KB
testcase_05 AC 70 ms
63,232 KB
testcase_06 AC 65 ms
64,512 KB
testcase_07 AC 63 ms
62,720 KB
testcase_08 AC 78 ms
67,584 KB
testcase_09 AC 67 ms
64,384 KB
testcase_10 AC 77 ms
70,272 KB
testcase_11 AC 76 ms
68,736 KB
testcase_12 AC 75 ms
69,888 KB
testcase_13 AC 76 ms
67,968 KB
testcase_14 AC 76 ms
71,040 KB
testcase_15 AC 74 ms
69,120 KB
testcase_16 AC 78 ms
70,528 KB
testcase_17 AC 74 ms
70,144 KB
testcase_18 AC 78 ms
71,296 KB
testcase_19 AC 67 ms
64,128 KB
testcase_20 AC 71 ms
65,408 KB
testcase_21 AC 70 ms
63,616 KB
testcase_22 AC 73 ms
65,280 KB
testcase_23 AC 69 ms
63,872 KB
testcase_24 AC 69 ms
64,128 KB
testcase_25 AC 70 ms
65,920 KB
testcase_26 AC 73 ms
65,664 KB
testcase_27 AC 73 ms
65,408 KB
testcase_28 AC 69 ms
63,872 KB
testcase_29 AC 68 ms
63,488 KB
testcase_30 AC 67 ms
64,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def equal(p, q, x):
    return q * (2 * x - 1) <= 2 * p < q * (2 * x + 1)

A, B = map(int, input().split())
ans = (999999, 999999)
for a in range(1000):
    for b in range(1000):
        s = a + b
        if s == 0:
            continue
        if equal(100 * a, s, A) and equal(100 * b, s, B) and a + b < sum(ans):
            ans = (a, b)

print(sum(ans))
0