結果
問題 |
No.793 うし数列 2
|
ユーザー |
|
提出日時 | 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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 8 TLE * 1 -- * 12 |
ソースコード
mod = 10**9+7 n = int(input()) s = 1 for i in range(n): s = s*10%mod s = (s+3)%mod print(s)