Search found 1 match

by williamxu
Sun Apr 26, 2009 8:43 am
Forum: Volume 100 (10000-10099)
Topic: 10033 - Interpreter
Replies: 88
Views: 39570

why my code is tle?

why my code is tle?
i just simulate it.


#include <iostream>
#include <string>

using namespace std;

int main()
{
int num_of_case;

cin >> num_of_case;
while (num_of_case--)
{
int ram[1000] = {0};
int reg[10] = {0};

string input_instruction;
int ram_index = 0;

// eat blank line.
cin ...

Go to advanced search