結果

問題 No.612 Move on grid
ユーザー Sebastian KingSebastian King
提出日時 2017-12-12 00:58:44
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 61 ms / 2,500 ms
コード長 1,030 bytes
コンパイル時間 1,357 ms
コンパイル使用メモリ 159,020 KB
実行使用メモリ 25,088 KB
最終ジャッジ日時 2024-12-18 00:45:20
合計ジャッジ時間 2,761 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 6 ms
6,816 KB
testcase_04 AC 34 ms
25,088 KB
testcase_05 AC 61 ms
25,088 KB
testcase_06 AC 59 ms
25,088 KB
testcase_07 AC 34 ms
25,088 KB
testcase_08 AC 59 ms
24,960 KB
testcase_09 AC 33 ms
14,336 KB
testcase_10 AC 24 ms
11,264 KB
testcase_11 AC 9 ms
6,820 KB
testcase_12 AC 35 ms
16,000 KB
testcase_13 AC 14 ms
7,552 KB
testcase_14 AC 45 ms
19,840 KB
testcase_15 AC 9 ms
6,816 KB
testcase_16 AC 52 ms
22,784 KB
testcase_17 AC 12 ms
8,064 KB
testcase_18 AC 42 ms
19,200 KB
testcase_19 AC 22 ms
12,800 KB
testcase_20 AC 32 ms
16,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;

typedef long long ll;
typedef pair<int, int> PII;

const int MM = 1e9 + 7;
const double eps = 1e-8;
const int MAXN = 2e6 + 10;

int n, m;

void prework(){

}

void read(){

}

int a, b, c, d, e;
int T;

int f[502][20010];

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

void solve(int casi){
//	cout << "Case #" << casi << ": ";
	cin >> T;
	cin >> a >> b >> c >> d >> e;
	f[0][10000] = 1;
	for (int i = 1; i <= T; i++){
		for (int j = 0; j <= 20000; j++)
			if (f[i-1][j]){
				upd(f[i][j+a], f[i-1][j]);
				upd(f[i][j+b], f[i-1][j]);
				upd(f[i][j+c], f[i-1][j]);
				upd(f[i][j-a], f[i-1][j]);
				upd(f[i][j-b], f[i-1][j]);
				upd(f[i][j-c], f[i-1][j]);
			}
	}
	ll ans = 0;
	for (int i = d + 10000; i <= e + 10000; i++){
		ans += f[T][i];
	}
	printf("%lld\n", ans % MM);
}

void printans(){

}


int main(){
//	std::ios::sync_with_stdio(false);
	prework();
	int T = 1;
//	cin>>T;
	for(int i = 1; i <= T; i++){
		read();
		solve(i);
		printans();
	}
	return 0;
}

0