結果
問題 | No.528 10^9と10^9+7と回文 |
ユーザー | mkawa2 |
提出日時 | 2021-11-12 09:49:10 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,377 bytes |
コンパイル時間 | 2,113 ms |
コンパイル使用メモリ | 81,512 KB |
実行使用メモリ | 100,204 KB |
最終ジャッジ日時 | 2024-05-03 15:31:02 |
合計ジャッジ時間 | 3,374 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
52,008 KB |
testcase_01 | AC | 40 ms
52,352 KB |
testcase_02 | AC | 39 ms
52,096 KB |
testcase_03 | AC | 39 ms
52,352 KB |
testcase_04 | AC | 39 ms
52,096 KB |
testcase_05 | AC | 38 ms
52,352 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 38 ms
52,736 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 39 ms
52,320 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 75 ms
88,844 KB |
ソースコード
import sys # sys.setrecursionlimit(200005) int1 = lambda x: int(x)-1 p2D = lambda x: print(*x, sep="\n") def II(): return int(sys.stdin.readline()) def LI(): return list(map(int, sys.stdin.readline().split())) def LLI(rows_number): return [LI() for _ in range(rows_number)] def LI1(): return list(map(int1, sys.stdin.readline().split())) def LLI1(rows_number): return [LI1() for _ in range(rows_number)] def SI(): return sys.stdin.readline().rstrip() # dij = [(0, 1), (-1, 0), (0, -1), (1, 0)] # dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)] # inf = 18446744073709551615 inf = 4294967295 md = 10**9+7 # md = 998244353 md1 = 10**9 s = list(map(int, SI())) n = len(s) for i in range(n//2): if s[i] > s[n-1-i]: s.reverse() break s = s[:(n+1)//2] # print(s) m = md for m in [md1, md]: cc = [0] for k in range(1, n): if k == 1: c = 9 elif k & 1: c = cc[k-1]*10%m else: c = cc[k-1] cc.append(c) ans = 0 for c in cc: ans = (ans+c)%m if s[0]: dp = [[0]*2 for _ in range(len(s)+1)] dp[0][0] = 1 for i, a in enumerate(s): dp[i+1][0] += dp[i][0] if i: dp[i+1][1] += (dp[i][0]*a+dp[i][1]*10)%m else: dp[i+1][1] += dp[i][0]*(a-1)%m ans = (ans+dp[-1][0]+dp[-1][1])%m print(ans)