結果

問題 No.41 貯金箱の溜息(EASY)
ユーザー cielciel
提出日時 2015-11-22 00:15:30
言語 C90
(gcc 11.4.0)
結果
AC  
実行時間 35 ms / 5,000 ms
コード長 279 bytes
コンパイル時間 777 ms
コンパイル使用メモリ 21,248 KB
実行使用メモリ 6,940 KB
最終ジャッジ日時 2024-09-13 17:08:58
合計ジャッジ時間 586 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
6,812 KB
testcase_01 AC 34 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:4:5: warning: type of ‘z’ defaults to ‘int’ [-Wimplicit-int]
    4 | int main(z){
      |     ^~~~
main.c:9:21: warning: format ‘%d’ expects argument of type ‘int *’, but argument 2 has type ‘long long int *’ [-Wformat=]
    9 |         for(scanf("%d",&m);~scanf("%lld",&m);){
      |                    ~^  ~~
      |                     |  |
      |                     |  long long int *
      |                     int *
      |                    %lld
main.c:9:13: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    9 |         for(scanf("%d",&m);~scanf("%lld",&m);){
      |             ^~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>
#define M 1000000
int A[M+1],i;
int main(z){
	A[0]=1;
	for(;z<=9;z++)for(i=0;i<=M-z;i++)A[i+z]=(A[i+z]+A[i])%1000000009;
	for(i=0;i<M;i++)A[i+1]=(A[i+1]+A[i])%1000000009;
	long long m;
	for(scanf("%d",&m);~scanf("%lld",&m);){
		printf("%d\n",A[m/111111]);
	}
}
0