結果
問題 | No.528 10^9と10^9+7と回文 |
ユーザー | vwxyz |
提出日時 | 2023-02-16 01:52:17 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
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 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
11,904 KB |
testcase_01 | AC | 34 ms
11,904 KB |
testcase_02 | AC | 35 ms
11,904 KB |
testcase_03 | AC | 35 ms
11,904 KB |
testcase_04 | AC | 35 ms
11,904 KB |
testcase_05 | AC | 34 ms
12,032 KB |
testcase_06 | AC | 35 ms
11,904 KB |
testcase_07 | AC | 34 ms
11,904 KB |
testcase_08 | AC | 34 ms
11,904 KB |
testcase_09 | AC | 35 ms
11,904 KB |
testcase_10 | AC | 385 ms
14,684 KB |
testcase_11 | AC | 377 ms
14,560 KB |
testcase_12 | AC | 376 ms
14,560 KB |
testcase_13 | AC | 385 ms
14,560 KB |
testcase_14 | AC | 246 ms
13,616 KB |
testcase_15 | AC | 223 ms
13,424 KB |
testcase_16 | AC | 203 ms
13,148 KB |
testcase_17 | AC | 172 ms
13,120 KB |
testcase_18 | AC | 382 ms
14,412 KB |
testcase_19 | AC | 126 ms
12,608 KB |
testcase_20 | AC | 284 ms
13,808 KB |
testcase_21 | AC | 162 ms
13,064 KB |
testcase_22 | AC | 35 ms
11,904 KB |
testcase_23 | AC | 34 ms
11,904 KB |
testcase_24 | AC | 36 ms
11,904 KB |
testcase_25 | AC | 64 ms
12,288 KB |
testcase_26 | AC | 388 ms
14,560 KB |
testcase_27 | AC | 407 ms
14,556 KB |
ソースコード
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)