結果
問題 | No.695 square1001 and Permutation 4 |
ユーザー | YukiDaruma |
提出日時 | 2018-06-08 23:13:55 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 471 bytes |
コンパイル時間 | 2,017 ms |
コンパイル使用メモリ | 167,696 KB |
実行使用メモリ | 159,616 KB |
最終ジャッジ日時 | 2024-07-22 19:15:42 |
合計ジャッジ時間 | 12,459 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | MLE | - |
testcase_02 | MLE | - |
testcase_03 | MLE | - |
testcase_04 | MLE | - |
testcase_05 | MLE | - |
testcase_06 | MLE | - |
testcase_07 | MLE | - |
testcase_08 | MLE | - |
testcase_09 | MLE | - |
testcase_10 | MLE | - |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | MLE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; vector<long long> P( 20000000 ); const long long iMod = 100000000000000007; int main() { int i; int j; int n; int m; int x[ 10 ]; ios::sync_with_stdio( false ); cin.tie( 0 ); cin >> n; cin >> m; for( i = 0; i < m; i++ ) cin >> x[ i ]; P[ 1 ] = 1; for( i = 1; i < n; i++ ) { for( j = 0; j < m; j++ ) { P[ i + x[ j ] ] += P[ i ]; P[ i + x[ j ] ] %= iMod; } } cout << P[ i ] << endl; return 0; }