結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 7 ms
5,376 KB
testcase_04 AC 39 ms
24,960 KB
testcase_05 AC 65 ms
24,960 KB
testcase_06 AC 64 ms
25,088 KB
testcase_07 AC 37 ms
25,088 KB
testcase_08 AC 67 ms
25,088 KB
testcase_09 AC 35 ms
14,336 KB
testcase_10 AC 27 ms
11,264 KB
testcase_11 AC 10 ms
5,760 KB
testcase_12 AC 37 ms
15,872 KB
testcase_13 AC 16 ms
7,808 KB
testcase_14 AC 50 ms
19,840 KB
testcase_15 AC 10 ms
6,016 KB
testcase_16 AC 55 ms
22,784 KB
testcase_17 AC 13 ms
7,936 KB
testcase_18 AC 46 ms
19,072 KB
testcase_19 AC 24 ms
12,800 KB
testcase_20 AC 35 ms
16,768 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