結果
| 問題 |
No.793 うし数列 2
|
| コンテスト | |
| ユーザー |
mnr
|
| 提出日時 | 2020-02-29 20:39:14 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 98 bytes |
| コンパイル時間 | 204 ms |
| コンパイル使用メモリ | 12,288 KB |
| 実行使用メモリ | 16,652 KB |
| 最終ジャッジ日時 | 2024-10-13 20:17:59 |
| 合計ジャッジ時間 | 6,395 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 3 TLE * 2 -- * 16 |
ソースコード
N = int(input())
Es = '1'
for i in range(N):
Es += '3'
E = int(Es)
A = E % 1000000007
print(A)
mnr