結果

問題 No.793 うし数列 2
ユーザー yakeshibayakeshiba
提出日時 2020-11-01 01:03:19
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 105 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 81,744 KB
実行使用メモリ 62,592 KB
最終ジャッジ日時 2024-07-22 05:32:05
合計ジャッジ時間 4,601 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
57,088 KB
testcase_01 AC 41 ms
51,456 KB
testcase_02 AC 42 ms
51,456 KB
testcase_03 AC 42 ms
51,584 KB
testcase_04 AC 41 ms
51,328 KB
testcase_05 AC 48 ms
57,216 KB
testcase_06 AC 56 ms
57,216 KB
testcase_07 AC 54 ms
57,088 KB
testcase_08 AC 55 ms
57,088 KB
testcase_09 AC 52 ms
57,216 KB
testcase_10 TLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10**9+7

n = int(input())
s = 1
for i in range(n):
    s = s*10%mod
    s = (s+3)%mod
    
print(s)
0