結果
問題 | No.528 10^9と10^9+7と回文 |
ユーザー | vvataarne |
提出日時 | 2017-06-10 00:08:40 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 487 bytes |
コンパイル時間 | 259 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-09-22 20:37:05 |
合計ジャッジ時間 | 2,015 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
10,752 KB |
testcase_01 | AC | 31 ms
10,752 KB |
testcase_02 | AC | 30 ms
10,624 KB |
testcase_03 | AC | 30 ms
10,624 KB |
testcase_04 | AC | 31 ms
10,752 KB |
testcase_05 | AC | 30 ms
10,624 KB |
testcase_06 | AC | 31 ms
10,624 KB |
testcase_07 | AC | 31 ms
10,624 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
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 | WA | - |
testcase_23 | WA | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
ソースコード
def g(p, n): a = p b = 0 if n % 2 == 1: p = int(p / 10) while p != 0: d = p p = int(p / 10) b = b * 10 + d a = a * 10 return a + b def f(n): l = len(str(n)) h = int((l + 1) / 2) p = int(str(n)[0:h]) if g(p, l) > n: p = p - 1 p = p * 2 o = 1 for i in range(1, h): o = o * 10 if l % 2 == 0: o = o * 10 p = p - int(p / 2) + o - 1 return p n = int(input()) x = f(n) print(x % 1000000000) print(x % 1000000007)