結果
| 問題 |
No.793 うし数列 2
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-04-13 00:04:29 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 160 bytes |
| コンパイル時間 | 385 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 79,616 KB |
| 最終ジャッジ日時 | 2024-09-15 06:24:57 |
| 合計ジャッジ時間 | 4,028 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 3 TLE * 1 -- * 17 |
ソースコード
a = int(input())
result = []
for i in range(0,a):
b = 10**i*3
result.append(b)
c = sum(result)
result_new = (10**a + c)
print(result_new%1000000007)