結果
| 問題 |
No.129 お年玉(2)
|
| コンテスト | |
| ユーザー |
nenuon
|
| 提出日時 | 2017-06-22 14:57:58 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 799 bytes |
| コンパイル時間 | 818 ms |
| コンパイル使用メモリ | 94,532 KB |
| 実行使用メモリ | 425,344 KB |
| 最終ジャッジ日時 | 2024-10-02 12:15:41 |
| 合計ジャッジ時間 | 28,333 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 WA * 2 |
| other | AC * 4 WA * 42 |
ソースコード
#include <algorithm>
#include <cstdio>
#include <iostream>
#include <map>
#include <cmath>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <vector>
#include <stdlib.h>
#include <stdio.h>
#include <bitset>
using namespace std;
#define FOR(I,A,B) for(int I = (A); I < (B); ++I)
vector<vector<long long> > dp(10001);
int main(){
long long n, m;
cin >> n >> m;
n /= 1000;
n %= m;
dp[1].push_back(1);
dp[1].push_back(1);
FOR(i,1,10000){
FOR(j,0,i+2){
if(j == 0) dp[i+1].push_back(dp[i][j]);
else if(j == i) dp[i+1].push_back(dp[i][i-1]);
else dp[i+1].push_back(dp[i][j-1] + dp[i][j]);
dp[i+1][j] %= 1000000000;
}
}
if(n==0){
cout << 1 << endl;
} else {
cout << dp[n][m] << endl;
}
return 0;
}
nenuon