結果

問題 No.2177 Recurring ab
ユーザー ntudantuda
提出日時 2023-07-03 17:29:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 45 ms / 2,000 ms
コード長 427 bytes
コンパイル時間 412 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 60,632 KB
最終ジャッジ日時 2024-07-17 15:00:18
合計ジャッジ時間 2,105 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
58,548 KB
testcase_01 AC 42 ms
58,784 KB
testcase_02 AC 45 ms
59,976 KB
testcase_03 AC 44 ms
60,076 KB
testcase_04 AC 43 ms
58,988 KB
testcase_05 AC 44 ms
59,284 KB
testcase_06 AC 45 ms
60,632 KB
testcase_07 AC 44 ms
59,812 KB
testcase_08 AC 45 ms
59,528 KB
testcase_09 AC 45 ms
58,656 KB
testcase_10 AC 43 ms
59,136 KB
testcase_11 AC 43 ms
59,176 KB
testcase_12 AC 45 ms
58,564 KB
testcase_13 AC 45 ms
58,852 KB
testcase_14 AC 44 ms
59,932 KB
testcase_15 AC 45 ms
60,352 KB
testcase_16 AC 44 ms
59,124 KB
testcase_17 AC 44 ms
59,052 KB
testcase_18 AC 44 ms
60,304 KB
testcase_19 AC 45 ms
58,864 KB
testcase_20 AC 44 ms
59,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
ans = 0
for a in range(10):
    for b in range(10):
        if a == b:
            continue
        lb = 1
        ub = 10 ** 10
        while ub - lb > 1:
            mid = (lb + ub) // 2
            if mid * mid - N * a * mid - N * b - 1 < 0:
                lb = mid
            else:
                ub = mid
        if lb > max(a,b):
            ans += lb - max(a,b)
            #print(a,b,lb)

print(ans)
0