結果
| 問題 | No.793 うし数列 2 | 
| コンテスト | |
| ユーザー |  _matumo_ | 
| 提出日時 | 2019-03-13 18:28:18 | 
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) | 
| 結果 | 
                                TLE
                                 
                             | 
| 実行時間 | - | 
| コード長 | 85 bytes | 
| コンパイル時間 | 103 ms | 
| コンパイル使用メモリ | 12,544 KB | 
| 実行使用メモリ | 17,692 KB | 
| 最終ジャッジ日時 | 2024-06-23 19:47:54 | 
| 合計ジャッジ時間 | 4,936 ms | 
| ジャッジサーバーID (参考情報) | judge1 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 2 | 
| other | AC * 8 TLE * 1 -- * 12 | 
ソースコード
N = int(input())
n = 1
for i in range(N):
    n = (n * 10 + 3) % 1000000007
print(n)
            
            
            
        