結果
| 問題 | No.793 うし数列 2 |
| コンテスト | |
| ユーザー |
_matumo_
|
| 提出日時 | 2019-03-13 18:28:18 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 85 bytes |
| 記録 | |
| コンパイル時間 | 578 ms |
| コンパイル使用メモリ | 20,952 KB |
| 実行使用メモリ | 30,776 KB |
| 最終ジャッジ日時 | 2026-03-09 02:25:33 |
| 合計ジャッジ時間 | 42,109 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 8 TLE * 13 |
ソースコード
N = int(input())
n = 1
for i in range(N):
n = (n * 10 + 3) % 1000000007
print(n)
_matumo_