結果
問題 | No.528 10^9と10^9+7と回文 |
ユーザー |
![]() |
提出日時 | 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 |
コンパイル時間 | 78 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 14,684 KB |
最終ジャッジ日時 | 2024-07-18 07:22:07 |
合計ジャッジ時間 | 6,210 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 28 |
ソースコード
import bisectimport copyimport decimalimport fractionsimport heapqimport itertoolsimport mathimport randomimport sysimport timefrom collections import Counter,deque,defaultdictfrom functools import lru_cache,reducefrom heapq import heappush,heappop,heapify,heappushpop,_heappop_max,_heapify_maxdef _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], itemheapq._siftup_max(heap, 0)return itemfrom math import gcd as GCDread=sys.stdin.readreadline=sys.stdin.readlinereadlines=sys.stdin.readlineswrite=sys.stdout.writeN=list(map(int,list(readline().rstrip())))le=len(N)for mod in (10**9,10**9+7):ans=0for i in range(1,le):ans+=9*pow(10,(i-1)//2,mod)ans%=modif le>=2:dp=0for n in N[:le//2]:dp*=10dp+=ndp%=moddp-=pow(10,le//2-1,mod)if le%2:dp*=10dp%=modans+=dpans%=modif le%2:for i in range(1 if le==1 else 0,10):if N[:le//2]+[i]+N[:le//2][::-1]<=N:ans+=1ans%=modelse:if N[:le//2]+N[:le//2][::-1]<=N:ans+=1ans%=modprint(ans)