結果
問題 | No.2480 Sequence Sum |
ユーザー | loop0919 |
提出日時 | 2023-09-22 23:05:46 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 900 bytes |
コンパイル時間 | 137 ms |
コンパイル使用メモリ | 82,708 KB |
実行使用メモリ | 71,924 KB |
最終ジャッジ日時 | 2024-07-08 13:48:06 |
合計ジャッジ時間 | 2,145 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
57,088 KB |
testcase_01 | AC | 35 ms
52,224 KB |
testcase_02 | TLE | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
ソースコード
# import系 --- # 入力用 --- INT = lambda: int(input()) MI = lambda: map(int, input().split()) MI_DEC = lambda: map(lambda x: int(x) - 1, input().split()) LI = lambda: list(map(int, input().split())) LI_DEC = lambda: list(map(lambda x: int(x) - 1, input().split())) LS = lambda: list(input()) LSS = lambda: input().split() # コード --- from math import isqrt N = INT() # aとbの最大公約数gcdと、a*x - b*y = 1 の特殊解x, y を返す def extended_gcd(a, b): if a == 0: return b, 0, 1 else: gcd, x, y = extended_gcd(b % a, a) return gcd, y - (b // a) * x, x # 連立合同式を解く def culc(A, B, a, b): _, x, _ = extended_gcd(A, B) return ((A * x) * (b - a) + a) % (A * B) ans = 0 for i in range(2, (N + 1) // 2): clc = culc(i, i-1, 0, N-(i-1)) x = (N - clc) // (i * (i - 1)) ans += x - 1 if N % i == 0 else x print(ans)