Sha256: 43f8270a5a3d48aa5a3365225b71622507ce9653b453d27a831b451a48dafb93

Contents?: true

Size: 583 Bytes

Versions: 7

Compression:

Stored size: 583 Bytes

Contents

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

char command[1024];

int main(int argc, char const *argv[])
{
  ofstream ofs;
  ofs.open("main.rb",ios::binary);
  string buf;
  string splitter="<$><*><$>";
  string time;
  while(getline(cin,buf)){
    if(buf==splitter)break;
    ofs<<buf<<endl;
  }
  ofs.close();
  ofs.open("test.in",ios::binary);
  while(getline(cin,buf)){
    if(buf==splitter)break;
    ofs<<buf<<endl;
  }
  ofs.close();
  cin>>time;
  system(("timeout -s 9 " + time + " /opt/wandbox/ruby-head/bin/ruby main.rb < test.in").c_str());
  return 0;
}

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
judge_system-1.4.0 lib/compile_systems/rb_system.cpp
judge_system-1.3.0 lib/compile_systems/rb_system.cpp
judge_system-1.2.4 lib/compile_systems/rb_system.cpp
judge_system-1.2.3 lib/compile_systems/rb_system.cpp
judge_system-1.2.2 lib/compile_systems/rb_system.cpp
judge_system-1.2.1 lib/compile_systems/rb_system.cpp
judge_system-1.2.0 lib/compile_systems/rb_system.cpp