結果

問題 No.528 10^9と10^9+7と回文
コンテスト
ユーザー vwxyz
提出日時 2023-02-16 01:52:17
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 407 ms / 1,000 ms
コード長 1,354 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 78 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 14,684 KB
最終ジャッジ日時 2024-07-18 07:22:07
合計ジャッジ時間 6,210 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 28
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

import bisect
import copy
import decimal
import fractions
import heapq
import itertools
import math
import random
import sys
import time
from collections import Counter,deque,defaultdict
from functools import lru_cache,reduce
from heapq import heappush,heappop,heapify,heappushpop,_heappop_max,_heapify_max
def _heappush_max(heap,item):
    heap.append(item)
    heapq._siftdown_max(heap, 0, len(heap)-1)
def _heappushpop_max(heap, item):
    if heap and item < heap[0]:
        item, heap[0] = heap[0], item
        heapq._siftup_max(heap, 0)
    return item
from math import gcd as GCD
read=sys.stdin.read
readline=sys.stdin.readline
readlines=sys.stdin.readlines
write=sys.stdout.write

N=list(map(int,list(readline().rstrip())))
le=len(N)
for mod in (10**9,10**9+7):
    ans=0
    for i in range(1,le):
        ans+=9*pow(10,(i-1)//2,mod)
        ans%=mod
    if le>=2:
        dp=0
        for n in N[:le//2]:
            dp*=10
            dp+=n
            dp%=mod
        dp-=pow(10,le//2-1,mod)
        if le%2:
            dp*=10
            dp%=mod
        ans+=dp
        ans%=mod
    if le%2:
        for i in range(1 if le==1 else 0,10):
            if N[:le//2]+[i]+N[:le//2][::-1]<=N:
                ans+=1
                ans%=mod
    else:
        if N[:le//2]+N[:le//2][::-1]<=N:
            ans+=1
            ans%=mod
    print(ans)
0