結果

問題 No.793 うし数列 2
ユーザー polyomino_24polyomino_24
提出日時 2019-02-22 22:52:16
言語 C++11
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 712 bytes
コンパイル時間 736 ms
コンパイル使用メモリ 96,928 KB
実行使用メモリ 12,068 KB
最終ジャッジ日時 2024-11-25 18:12:10
合計ジャッジ時間 16,626 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 1 ms
8,448 KB
testcase_02 AC 2 ms
10,496 KB
testcase_03 AC 2 ms
8,448 KB
testcase_04 AC 2 ms
12,068 KB
testcase_05 AC 6 ms
8,320 KB
testcase_06 AC 17 ms
12,068 KB
testcase_07 AC 9 ms
8,448 KB
testcase_08 AC 18 ms
12,068 KB
testcase_09 AC 13 ms
5,248 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 TLE -
testcase_14 WA -
testcase_15 TLE -
testcase_16 WA -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 WA -
testcase_20 TLE -
testcase_21 WA -
testcase_22 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cassert>
#include <cctype>
#include <climits>
#include <cmath>
#include <complex>
#include <cstdio>
#include <cstring>
#include <deque>
#include <functional>
#include <iomanip>
#include <iostream>
#include <map>
#include <numeric>
#include <queue>
#include <random>
#include <set>
#include <stack>
#include <string>
#include <tuple>
#include <vector>
#define rep(i, n) for (int i = 0; i < (int)(n); ++i)
#define show(x) cerr << #x << " = " << (x) << endl;
using namespace std;
using ll = long long;
using pii = pair<int,int>;
ll mod = 1000000007;
int main(){
    ll ans = 1;
    ll n;
    cin >> n;
    rep(i,n){
        ans = (ans * 10 + 3) % mod;
    }
    cout << ans << endl;
}
0