結果

問題 No.528 10^9と10^9+7と回文
ユーザー convexineqconvexineq
提出日時 2021-02-24 02:56:28
言語 PyPy3
(7.3.15)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 312 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,080 KB
実行使用メモリ 67,576 KB
最終ジャッジ日時 2024-09-22 22:04:42
合計ジャッジ時間 2,503 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 39 ms
51,840 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 38 ms
51,712 KB
testcase_05 AC 40 ms
52,352 KB
testcase_06 AC 38 ms
51,840 KB
testcase_07 AC 38 ms
51,968 KB
testcase_08 AC 39 ms
51,840 KB
testcase_09 AC 39 ms
51,968 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 AC 41 ms
52,096 KB
testcase_23 AC 38 ms
51,968 KB
testcase_24 AC 42 ms
58,112 KB
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def kaibun_number(s,MOD):
    m = (len(s)+1)//2
    ans = int(s[:m])%MOD - pow(10,m-1,MOD)
    if s[-m:] >= s[:m][::-1]: ans += 1
    r = 9
    for i in range(1,len(s)):
        ans += r
        if i%2==0: r = r*10%MOD
    return ans%MOD

s = input()
print(kaibun_number(s,10**9))
print(kaibun_number(s,10**9+7))
0