結果

問題 No.338 アンケート機能
ユーザー GrayCoderGrayCoder
提出日時 2018-08-13 09:29:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 397 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 11,904 KB
実行使用メモリ 10,124 KB
最終ジャッジ日時 2023-10-24 16:30:41
合計ジャッジ時間 1,987 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,124 KB
testcase_01 AC 30 ms
10,124 KB
testcase_02 AC 28 ms
10,124 KB
testcase_03 AC 28 ms
10,124 KB
testcase_04 AC 28 ms
10,064 KB
testcase_05 WA -
testcase_06 AC 28 ms
10,064 KB
testcase_07 WA -
testcase_08 AC 29 ms
10,124 KB
testcase_09 WA -
testcase_10 AC 30 ms
10,124 KB
testcase_11 AC 29 ms
10,064 KB
testcase_12 AC 29 ms
10,124 KB
testcase_13 AC 29 ms
10,064 KB
testcase_14 AC 29 ms
10,064 KB
testcase_15 AC 29 ms
10,124 KB
testcase_16 AC 29 ms
10,124 KB
testcase_17 AC 29 ms
10,124 KB
testcase_18 AC 29 ms
10,064 KB
testcase_19 AC 28 ms
10,124 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 28 ms
10,124 KB
testcase_24 AC 28 ms
10,124 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 29 ms
10,124 KB
testcase_29 AC 29 ms
10,124 KB
testcase_30 AC 29 ms
10,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin, stdout

input = lambda: stdin.readline().rstrip()
write = stdout.write

def main():
    A, B = map(int, input().split())

    rnd = lambda x: (x * 2 + 1) // 2
    A_, B_ = A / 100, B / 100
    n = 1
    while 1:
        a = rnd(n * A_)
        b = rnd(n * B_)
        if rnd(a / n * 100) == A and rnd(b / n * 100) == B:
            break
        n += 1
    print(n)

main()
0