結果

問題 No.793 うし数列 2
ユーザー Ner7hxH9Z6mnqYJNer7hxH9Z6mnqYJ
提出日時 2019-04-25 17:27:05
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 369 bytes
コンパイル時間 1,920 ms
コンパイル使用メモリ 158,528 KB
実行使用メモリ 17,104 KB
最終ジャッジ日時 2024-11-20 20:18:28
合計ジャッジ時間 41,208 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,636 KB
testcase_01 WA -
testcase_02 AC 2 ms
13,636 KB
testcase_03 AC 2 ms
10,148 KB
testcase_04 AC 1 ms
13,636 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
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 #

#include <bits/stdc++.h>
using namespace std;

int main() {
  int N;
  cin >> N;
  int num;
  
  num = pow(10,N);
  for(int i = N - 1; i >= 0; i--){
    num = num + 3 * pow(10, i);
  }
  double ans = num % 1000000007;
  if(ans != 0 && num > 1000000007){
    cout << ans;
  }
  
  else if(ans != 0 && num < 1000000007){
    cout << num;
  }
  
  else{}
      
}
  
  
  
0