Sha256: 43ec134e0962950632fa1864132d772335480a88543514df25029c3973152372
Contents?: true
Size: 488 Bytes
Versions: 3
Compression:
Stored size: 488 Bytes
Contents
require 'base64' File.open("stdin.txt.bz2", "wb") do |file| file.write Base64.decode64 $stdin.read file.close end system("bunzip2 stdin.txt.bz2") stdin = File.open("stdin.txt").read.split("\n<$><*><$>\n") code = stdin[0] input = stdin[1] time = stdin[2] File.open("./main.rb", "w") do |file| file.puts code file.close end File.open("./test.in", "w") do |file| file.puts input file.close end system "timeout -s 9 " + time + " /opt/wandbox/ruby-head/bin/ruby main.rb < test.in"
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
judge_system-1.7.2 | lib/compile_systems/rb_system.rb |
judge_system-1.7.1 | lib/compile_systems/rb_system.rb |
judge_system-1.7.0 | lib/compile_systems/rb_system.rb |