結果

問題 No.41 貯金箱の溜息(EASY)
ユーザー しらっ亭しらっ亭
提出日時 2016-03-15 20:22:28
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 6 ms / 5,000 ms
コード長 1,080 bytes
コンパイル時間 1,376 ms
コンパイル使用メモリ 159,260 KB
実行使用メモリ 6,548 KB
最終ジャッジ日時 2024-04-08 14:09:10
合計ジャッジ時間 2,021 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
6,548 KB
testcase_01 AC 5 ms
6,548 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘void Main()’:
main.cpp:36:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   36 |   scanf("%d", &T);
      |   ~~~~~^~~~~~~~~~
main.cpp:39:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   39 |     scanf("%lld", &m);
      |     ~~~~~^~~~~~~~~~~~

ソースコード

diff #

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

#undef _P
#define _P(...) (void)printf(__VA_ARGS__)
#define FORR(x,arr) for(auto&& x:arr)
#define FOR(i,a,b) for (int i = (a); i < (b); i++)
#define RFOR(i,a,b) for (int i = (b)-1; i >= (a); i--)
#define REP(i,n) for (int i = 0; i < (n); i++)
#define RREP(i,n) for (int i = (n)-1; i >= 0; i--)
#define ALL(x) (x).begin(), (x).end()
#define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++)
#define RITR(x,c) for(__typeof(c.rbegin()) x=c.rbegin();x!=c.rend();x++)
#define BIT(n) (1LL<<(n))
#define SZ(x) ((int)(x).size())
typedef long long ll;
// -------------------------------------

constexpr int MAX = 10000000000L / 111111 + 1;

const int mod = 1000000009;
int dp[MAX];

void Main() {
  dp[0] = 1;
  FOR(j, 1, 10) REP(i, MAX-j) {
    dp[i+j] += dp[i];
    if (dp[i+j] > mod) dp[i+j]-=mod;
  }
  FOR(i, 1, MAX) {
    dp[i] += dp[i-1];
    if (dp[i] > mod) dp[i]-=mod;
  }

  int T;
  scanf("%d", &T);
  REP(i, T) {
    ll m;
    scanf("%lld", &m);
    _P("%d\n", dp[m / 111111]);
  }
}

int main() {Main(); return 0; }
0