結果

問題 No.2177 Recurring ab
ユーザー rlangevinrlangevin
提出日時 2023-01-24 00:49:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 447 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 60,672 KB
最終ジャッジ日時 2024-06-25 18:12:00
合計ジャッジ時間 2,053 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
59,244 KB
testcase_01 AC 44 ms
59,168 KB
testcase_02 AC 45 ms
59,884 KB
testcase_03 AC 43 ms
60,012 KB
testcase_04 AC 46 ms
60,464 KB
testcase_05 AC 45 ms
59,480 KB
testcase_06 AC 46 ms
60,656 KB
testcase_07 AC 46 ms
59,380 KB
testcase_08 AC 45 ms
60,096 KB
testcase_09 AC 46 ms
60,672 KB
testcase_10 AC 44 ms
60,304 KB
testcase_11 AC 44 ms
58,976 KB
testcase_12 AC 45 ms
59,360 KB
testcase_13 AC 44 ms
59,908 KB
testcase_14 AC 46 ms
60,556 KB
testcase_15 AC 43 ms
59,596 KB
testcase_16 AC 45 ms
60,036 KB
testcase_17 AC 44 ms
60,596 KB
testcase_18 AC 45 ms
59,924 KB
testcase_19 AC 45 ms
60,136 KB
testcase_20 AC 44 ms
59,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(N, a, b, p):
    return N * (a * p + b) > p * p - 1

N = int(input())
ans = 0
for a in range(10):
    for b in range(10):
        if a == b:
            continue
        yes = 0
        no = 10 ** 9 + 1
        while no - yes != 1:
            mid = (yes + no)//2
            if f(N, a, b, mid):
                yes = mid
            else:
                no = mid
        ans += max(0, yes - max(a, b))
        # print(a, b, mid)
print(ans)
0