結果
問題 | No.2979 直角三角形の個数 |
ユーザー | lif4635 |
提出日時 | 2024-12-03 03:18:36 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,370 bytes |
コンパイル時間 | 345 ms |
コンパイル使用メモリ | 82,548 KB |
実行使用メモリ | 154,496 KB |
最終ジャッジ日時 | 2024-12-03 03:19:21 |
合計ジャッジ時間 | 43,854 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
129,920 KB |
testcase_01 | AC | 37 ms
57,856 KB |
testcase_02 | AC | 38 ms
57,984 KB |
testcase_03 | AC | 37 ms
60,252 KB |
testcase_04 | AC | 38 ms
57,856 KB |
testcase_05 | AC | 38 ms
59,344 KB |
testcase_06 | AC | 37 ms
58,240 KB |
testcase_07 | AC | 41 ms
60,616 KB |
testcase_08 | AC | 47 ms
66,048 KB |
testcase_09 | AC | 45 ms
67,928 KB |
testcase_10 | AC | 72 ms
154,496 KB |
testcase_11 | AC | 54 ms
68,352 KB |
testcase_12 | AC | 96 ms
76,800 KB |
testcase_13 | AC | 84 ms
76,376 KB |
testcase_14 | AC | 317 ms
76,544 KB |
testcase_15 | AC | 285 ms
76,416 KB |
testcase_16 | AC | 1,274 ms
76,964 KB |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | AC | 39 ms
52,224 KB |
testcase_25 | AC | 38 ms
51,968 KB |
testcase_26 | AC | 38 ms
52,480 KB |
testcase_27 | AC | 133 ms
76,588 KB |
testcase_28 | TLE | - |
ソースコード
from math import isqrt n = int(input()) rootn = isqrt(n) minp = [0]*(rootn+1) # 素因数の前計算 for i in range(3,rootn+1,2): if minp[i] != 0: continue for j in range(i,rootn+1,i): if minp[j] == 0: minp[j] = i from itertools import permutations def calc(x,fp): res = x l = 1 while l <= len(fp): tmp = 1 for i in range(l-1): tmp *= fp[i] while tmp * fp[-1] > x: fp.pop() if len(fp) < l: return res for p in permutations(fp,l): tmp = 1 for i in p: tmp *= i if l%2: res -= x//tmp else: res += x//tmp ans = 0 #pの全探索 const = 3 * 10**4 for p in range(2,rootn + 1): fp = [] p_ = p while minp[p_] != 0: mp = minp[p_] fp.append(mp) while p_%mp == 0: p_ //= mp # q は奇数 # p < q < 2p # maxの値はm以下 m = n//(2*p) lim = isqrt(m) #ここを境界とします lq = 2 * ((p+1)//2) + 1 rq = min(m+1,2*p) if rq - lq <= const: for r in range(lq,rq,2): if not (0 < r - p < p): continue for i in fp: if r%i == 0: break else: ans += m//r #この倍数まで大丈夫 else: #この時あきらかに const <= lq olq,orq = lq,rq for res in range(max(m//orq,1), m//olq+1): lq = m // (res + 1) rq = m // res #加算されるのがlの範囲 lq = max(lq,olq-1) rq = min(rq,orq-1) if lq >= rq: continue # print(res,p,lq,rq) #この内倍数でもなければ2の倍数でもないもの fp_ = [2] + fp while fp_ and fp_[-1] > rq: fp_.pop() assert fp_.count(2) <= 1 # cnt = 0 # for num in range(lq+1,rq+1): # for i in fp_: # if num%i == 0: # break # else: # cnt += 1 cnt = calc(rq,fp_[:]) - calc(lq,fp_[:]) ans += cnt*res print(ans)