Giter VIP home page Giter VIP logo

grader's People

Contributors

iammarkps avatar pongsaphol avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

grader's Issues

Changes for new API protocol

Outputs to API must be serializable into the following interfaces:

interface SendMsg {
  SubmissionID: string
  Message: IGroup | 'Compiling' | 'Compilation Error' | 'Judged test %{id}' | 'Complete'
}
interface SendGroup {
  SubmissionID: string
  Results: IGroup
}
interface ITestResult {
  Verdict: string
  Score: number
  Time: number
  Memory: number
  Message: string
}
interface IGroup {
  Score: number
  FullScore: number
  TestResults: ITestResult[]
}
  • Messages should be sent for each new test judging
  • Group status should be sent after each group is done

Grader runtime error 0042

Source code:

#include<bits/stdc++.h>
using namespace std;
typedef long long int ll;
int main(){
	int n;cin >> n;
	while(n--){
		int t;cin >> t;
		long double l = 1.0;
		while(t--)l *= 2.0;
		printf("%.0Lf\n", l);
	}
}

API pushes to endpoints

For localhost:11111/message

submissionID: string
message: string

For localhost:11111/group

submissionID: string
results: IGroup

New manifest spec

  • Specify base directory as command line argument
  • Allow users to specify location of isolate binary in globalConfig.json
  • Change the way extensions are handled
  • Change directory structure
  • Implement Global Configuration
  • New checker spec
  • New grouper spec
  • All indices start at 1
  • All fields with "problem" should be renamed to "task"
  • "Skipped" verdict to be sent for all tests in each group where its dependencies are not satisfied

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.