Submission #1372226


Source Code Expand

#include <iostream>
#include <vector>
using namespace std;


int main() {
  int W, H, mod=0;
  cin >>W >> H;
  vector<vector <int> > box=vector<vector< int> >(W+2, vector<int>(H+2, 1) );

  for( int i = 1; i < W; ++i){
    for (int j = 1; j < H; ++j){
      box[i+1][j+1] = (box[i+1][j]+box[i][j+1])%1000000007;
    }
  }
  cout<<box[W][H]<<endl;

  return 0;
}

Submission Info

Submission Time
Task C - 経路
User taker8319
Language C++14 (GCC 5.4.1)
Score 100
Code Size 381 Byte
Status RE
Exec Time 2531 ms
Memory 1196672 KB

Judge Result

Set Name Sample Dataset1 Dataset2 All
Score / Max Score 0 / 0 50 / 50 50 / 50 0 / 1
Status
AC × 2
AC × 12
AC × 24
AC × 24
TLE × 1
MLE × 2
RE × 8
Set Name Test Cases
Sample s0.txt, s1.txt
Dataset1 000.txt, 001.txt, 002.txt, 003.txt, 004.txt, 005.txt, 006.txt, 007.txt, 008.txt, 009.txt, 010.txt, s0.txt
Dataset2 000.txt, 001.txt, 002.txt, 003.txt, 004.txt, 005.txt, 006.txt, 007.txt, 008.txt, 009.txt, 010.txt, 011.txt, 012.txt, 013.txt, 014.txt, 015.txt, 016.txt, 017.txt, 018.txt, 019.txt, 020.txt, 021.txt, s0.txt, s1.txt
All 000.txt, 001.txt, 002.txt, 003.txt, 004.txt, 005.txt, 006.txt, 007.txt, 008.txt, 009.txt, 010.txt, 011.txt, 012.txt, 013.txt, 014.txt, 015.txt, 016.txt, 017.txt, 018.txt, 019.txt, 020.txt, 021.txt, 022.txt, 023.txt, 024.txt, 025.txt, 026.txt, 027.txt, 028.txt, 029.txt, 030.txt, 031.txt, 032.txt, s0.txt, s1.txt
Case Name Status Exec Time Memory
000.txt AC 1 ms 256 KB
001.txt AC 1 ms 256 KB
002.txt AC 1 ms 256 KB
003.txt AC 1 ms 256 KB
004.txt AC 1 ms 256 KB
005.txt AC 1 ms 256 KB
006.txt AC 1 ms 256 KB
007.txt AC 1 ms 256 KB
008.txt AC 1 ms 256 KB
009.txt AC 1 ms 256 KB
010.txt AC 1 ms 256 KB
011.txt AC 5 ms 3072 KB
012.txt AC 2 ms 512 KB
013.txt AC 5 ms 3200 KB
014.txt AC 4 ms 2048 KB
015.txt AC 5 ms 3200 KB
016.txt AC 5 ms 3072 KB
017.txt AC 4 ms 2048 KB
018.txt AC 4 ms 2432 KB
019.txt AC 2 ms 768 KB
020.txt AC 3 ms 1664 KB
021.txt AC 7 ms 4224 KB
022.txt RE 1834 ms -863068 KB
023.txt RE 1701 ms -863444 KB
024.txt RE 1587 ms -863336 KB
025.txt MLE 480 ms 337012 KB
026.txt MLE 1642 ms 1196672 KB
027.txt RE 1588 ms -863200 KB
028.txt RE 1488 ms -862756 KB
029.txt RE 1782 ms -862696 KB
030.txt RE 1528 ms -862624 KB
031.txt RE 1625 ms -862756 KB
032.txt TLE 2531 ms -862664 KB
s0.txt AC 11 ms 1780 KB
s1.txt AC 2 ms 512 KB