結果

問題 No.612 Move on grid
ユーザー heyshbheyshb
提出日時 2017-12-13 22:27:17
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 108 ms / 2,500 ms
コード長 582 bytes
コンパイル時間 1,403 ms
コンパイル使用メモリ 159,532 KB
実行使用メモリ 46,720 KB
最終ジャッジ日時 2024-05-10 03:53:39
合計ジャッジ時間 3,810 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 24 ms
13,824 KB
testcase_04 AC 106 ms
46,720 KB
testcase_05 AC 96 ms
46,720 KB
testcase_06 AC 93 ms
46,592 KB
testcase_07 AC 108 ms
46,592 KB
testcase_08 AC 93 ms
46,720 KB
testcase_09 AC 92 ms
46,464 KB
testcase_10 AC 61 ms
30,464 KB
testcase_11 AC 31 ms
16,384 KB
testcase_12 AC 71 ms
35,712 KB
testcase_13 AC 41 ms
21,632 KB
testcase_14 AC 80 ms
40,832 KB
testcase_15 AC 31 ms
17,024 KB
testcase_16 AC 91 ms
46,080 KB
testcase_17 AC 42 ms
22,400 KB
testcase_18 AC 81 ms
41,728 KB
testcase_19 AC 64 ms
33,024 KB
testcase_20 AC 92 ms
44,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:17:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   17 |         scanf("%d",&T);
      |         ~~~~~^~~~~~~~~
main.cpp:18:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   18 |         scanf("%d%d%d%d%d",&a,&b,&c,&d,&e);
      |         ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

const int MOD = 1e9+7;
int f[510][22000];
int T,a,b,c,d,e;

void upd(int &x,int y)
{
	x += y;
	if (x >= MOD) x -= MOD;
}

int main()
{
	scanf("%d",&T);
	scanf("%d%d%d%d%d",&a,&b,&c,&d,&e);
	f[0][10100] = 1;
	for (int i=0;i<T;i++)
	{
		for (int j=20;j<=20980;j++)
		{
			upd(f[i+1][j+a],f[i][j]);
			upd(f[i+1][j+b],f[i][j]);
			upd(f[i+1][j+c],f[i][j]);
			upd(f[i+1][j-a],f[i][j]);
			upd(f[i+1][j-b],f[i][j]);
			upd(f[i+1][j-c],f[i][j]);
		}
	}
	int ans = 0;
	for (int i=d;i<=e;i++)
		upd(ans,f[T][i+10100]);
	printf("%d\n",ans);
}
0