結果

問題 No.695 square1001 and Permutation 4
ユーザー ats5515ats5515
提出日時 2018-06-08 22:46:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 661 bytes
コンパイル時間 932 ms
コンパイル使用メモリ 96,236 KB
実行使用メモリ 159,584 KB
最終ジャッジ日時 2024-07-22 19:14:39
合計ジャッジ時間 9,834 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 90 ms
11,060 KB
testcase_02 AC 100 ms
42,132 KB
testcase_03 AC 103 ms
42,232 KB
testcase_04 AC 438 ms
42,168 KB
testcase_05 AC 378 ms
42,272 KB
testcase_06 MLE -
testcase_07 MLE -
testcase_08 MLE -
testcase_09 MLE -
testcase_10 AC 178 ms
18,736 KB
testcase_11 MLE -
testcase_12 MLE -
testcase_13 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <string>
#include <iomanip>
#include <algorithm>
#include <cmath>
#include <stdio.h>
using namespace std;
#define int long long
__int128_t MOD = 100000000;

signed main() {
	MOD = 10 * MOD * MOD + 7;
	cin.tie(0);
	ios::sync_with_stdio(false);
	int N, M;
	cin >> N >> M;
	vector<int> A(N, 0);
	A[0] = 1;
	vector<int> X(M);
	for (int i = 0; i < M; i++) {
		cin >> X[i];
	}
	for (int i = 0; i < N; i++) {
		for (int j = 0; j < M; j++) {
			if (i + X[j] < N) {
				A[i + X[j]] = ((__int128_t)A[i + X[j]] + (__int128_t)A[i]) % MOD;
			}
		}
	}
	cout << A[N - 1] << endl;
}
0