結果

問題 No.793 うし数列 2
ユーザー takakintakakin
提出日時 2020-06-09 23:08:53
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 161 bytes
コンパイル時間 347 ms
コンパイル使用メモリ 12,160 KB
実行使用メモリ 23,760 KB
最終ジャッジ日時 2025-01-03 05:10:01
合計ジャッジ時間 42,568 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
16,928 KB
testcase_01 AC 34 ms
17,056 KB
testcase_02 AC 33 ms
17,056 KB
testcase_03 AC 33 ms
19,968 KB
testcase_04 AC 33 ms
20,352 KB
testcase_05 AC 155 ms
17,184 KB
testcase_06 AC 452 ms
16,932 KB
testcase_07 AC 234 ms
16,928 KB
testcase_08 AC 494 ms
20,224 KB
testcase_09 AC 331 ms
16,936 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
n=int(input())
mod=10**9+7
ans=1
for i in range(n):
  ans=(ans*10)+3
  if ans>mod:
    ans%=mod
print(ans)
0