結果
問題 | No.2177 Recurring ab |
ユーザー | 👑 Kazun |
提出日時 | 2023-01-06 21:53:16 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 46 ms / 2,000 ms |
コード長 | 1,140 bytes |
コンパイル時間 | 173 ms |
コンパイル使用メモリ | 82,324 KB |
実行使用メモリ | 60,160 KB |
最終ジャッジ日時 | 2024-11-30 17:51:52 |
合計ジャッジ時間 | 1,836 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 44 ms
58,716 KB |
testcase_01 | AC | 42 ms
57,856 KB |
testcase_02 | AC | 45 ms
59,904 KB |
testcase_03 | AC | 42 ms
58,624 KB |
testcase_04 | AC | 44 ms
58,624 KB |
testcase_05 | AC | 42 ms
58,240 KB |
testcase_06 | AC | 44 ms
58,624 KB |
testcase_07 | AC | 44 ms
58,752 KB |
testcase_08 | AC | 46 ms
59,392 KB |
testcase_09 | AC | 45 ms
59,980 KB |
testcase_10 | AC | 45 ms
59,296 KB |
testcase_11 | AC | 46 ms
58,880 KB |
testcase_12 | AC | 45 ms
59,432 KB |
testcase_13 | AC | 42 ms
58,240 KB |
testcase_14 | AC | 46 ms
59,136 KB |
testcase_15 | AC | 45 ms
59,392 KB |
testcase_16 | AC | 45 ms
58,752 KB |
testcase_17 | AC | 44 ms
59,136 KB |
testcase_18 | AC | 45 ms
59,520 KB |
testcase_19 | AC | 45 ms
59,648 KB |
testcase_20 | AC | 45 ms
60,160 KB |
ソースコード
def General_Binary_Decrease_Search_Integer(L, R, cond, default=None):""" 条件式が単調減少であるとき, 整数上で二部探索を行う.L: 解の下限R: 解の上限cond: 条件 (1変数関数, 広義単調減少 を満たす)default: R で条件を満たさないときの返り値"""if not(cond(L)):return defaultif cond(R):return RL-=1while R-L>1:C=L+(R-L)//2if cond(C):L=Celse:R=Creturn L#==================================================def solve():N=int(input())X=0# 2<=p<=9for p in range(2,10):for a in range(p):for b in range(p):if a!=b and N*(a*p+b)>(p*p-1):X+=1# 10<=pfor a in range(10):for b in range(10):if a==b:continuecheck=lambda p:N*(a*p+b)>(p*p-1)p_max=General_Binary_Decrease_Search_Integer(1,10**9,check)X+=max(p_max-9,0)return X#==================================================print(solve())