結果
問題 | No.793 うし数列 2 |
ユーザー | yuppe19 😺 |
提出日時 | 2019-02-22 21:43:43 |
言語 | Python2 (2.7.18) |
結果 |
WA
|
実行時間 | - |
コード長 | 558 bytes |
コンパイル時間 | 202 ms |
コンパイル使用メモリ | 6,816 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-05-04 00:57:20 |
合計ジャッジ時間 | 1,675 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 14 ms
6,272 KB |
testcase_01 | AC | 14 ms
6,272 KB |
testcase_02 | AC | 14 ms
6,144 KB |
testcase_03 | AC | 13 ms
6,144 KB |
testcase_04 | AC | 13 ms
6,272 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 13 ms
6,272 KB |
testcase_10 | AC | 13 ms
6,144 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 13 ms
6,144 KB |
testcase_15 | WA | - |
testcase_16 | AC | 11 ms
6,272 KB |
testcase_17 | WA | - |
testcase_18 | AC | 11 ms
6,272 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
ソースコード
#!/usr/bin/python2 # -*- coding: utf-8 -*- # † mod = 10**9 + 7 def mod_inv(a, m): b, s, t, old_a = m, 1, 0, a while b: q = a / b a %= b a, b = b, a s -= t * q s, t = t, s if a != 1: return None return s + m if s < 0 else s # \frac{10^{n} - 1}{3} + 10^{n} def f(n): inv = mod_inv(3, mod) p10 = pow(10, n, mod) # res = (p10 - 1) * inv + p10 res = (p10 - 1) / 3 + p10 # わざと 3 で割ってみる res %= mod return res ## N = int(raw_input()) res = f(N) print res