結果
問題 | No.528 10^9と10^9+7と回文 |
ユーザー | 6soukiti29 |
提出日時 | 2017-06-18 13:25:37 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 586 bytes |
コンパイル時間 | 130 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-10-01 19:52:14 |
合計ジャッジ時間 | 1,902 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 30 ms
10,880 KB |
testcase_03 | AC | 34 ms
10,880 KB |
testcase_04 | AC | 30 ms
10,752 KB |
testcase_05 | AC | 30 ms
10,880 KB |
testcase_06 | WA | - |
testcase_07 | AC | 29 ms
10,752 KB |
testcase_08 | WA | - |
testcase_09 | AC | 29 ms
10,752 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 | 30 ms
10,880 KB |
testcase_23 | AC | 30 ms
10,752 KB |
testcase_24 | AC | 49 ms
10,880 KB |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
ソースコード
def kaibun(y): x = len(str(y)) flag = 0 X = [9,9] i = 2 while x > i: if i % 2 == 0: X.append(X[i - 1] * 10) else: X.append(X[i - 1]) i = i + 1 a = sum(X[:x - 1]) for j in range(1, x // 2 + 1): if j == 1: a = a + (int(str(y)[j - 1]) - 1) * X[x - 2 * j + 1]//9 else: a = a + (int(str(y)[j - 1])) * X[x - 2 * j + 1] // 9 if y <= int(str(y)[::-1]): a = a + 1 if x % 2 == 1: a = a + int(str(y)[x // 2]) return a # X[i] は i 桁の自然数のうち回文となるものの個数 n = int(input()) print(kaibun(n)%1000000000) print(kaibun(n)%1000000007)