ZsgsDesign / NOJ

⚡ The most advanced open-source automatic algorithm online judge system | 南京邮电大学开源 Online Judge | QQ群:668108264

Home Page:https://acm.njupt.edu.cn

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

NOJ - Automatic Algorithm Test Platform

NOJ

NOJ's another online judge platform, stands for NJUPT Online Judge. It's written in PHP, GO, Python and other function-supporting languages and supports both online judges and virtual judges, we called it mixed judge.

Build Status License Scrutinizer Code Quality FOSSA Status GitHub repo size GitHub release Stars Forks

Built using Jet Brains Open Source License

JetBrains Logo (Main) logo.

v0.17.0 Characinae

For more information, please visit v0.17.0 Characinae Release Log page.

Installation

If you are having trouble installing NOJ or requires additional help setting up, you can contact us via noj@njupt.edu.cn or start an issue.

CentOS 8 will be recommended for hosting NOJ, but all major operating systems are theoretically supported.

We recommend running NOJ on the following platforms:

  • Ubuntu 20.04 and above
  • CentOS Linux release 8.0 and above
  • Windows 10 Professional (requires additional setup)

Your web browser should be one of the following:

Chrome
Chrome
Firefox
Firefox
IE
Internet Explorer
Edge
Edge
Opera
Opera
Safari
Safari
69 and above 62 and above Not supported 69 and above Not Supported 13.1 and above
  • Chrome 69 and above
  • Edge 69 and above
  • Firefox 62 and above
  • Safari 13.1 and above

We do not provide any support for Opera, which doesn't mean Opera cannot access NOJ without error, it just means issues about compatibilities of Opera will not be fixed.

For installation options and troubleshooting tips, see NOJ Documentation.

Supported Languages

NOJ now supports 15 popular programming languages, you can start issues about new languages support.

Language Compile/Run Command
C /usr/bin/gcc -DONLINE_JUDGE -O2 -w -fmax-errors=3 -std=c99 {src_path} -lm -o {exe_path}
C11 /usr/bin/gcc -DONLINE_JUDGE -O2 -w -fmax-errors=3 -std=c11 {src_path} -lm -o {exe_path}
C++ /usr/bin/g++ -DONLINE_JUDGE -O2 -w -fmax-errors=3 -std=c++11 {src_path} -lm -o {exe_path}
C++14 /usr/bin/g++ -DONLINE_JUDGE -O2 -w -fmax-errors=3 -std=c++14 {src_path} -lm -o {exe_path}
C++17 /usr/bin/g++ -DONLINE_JUDGE -O2 -w -fmax-errors=3 -std=c++17 {src_path} -lm -o {exe_path}
Java /usr/bin/javac {src_path} -d {exe_dir} -encoding UTF8
/usr/bin/java -cp {exe_dir} -XX:MaxRAM={max_memory}k -Djava.security.manager -Dfile.encoding=UTF-8 -Djava.security.policy==/etc/java_policy -Djava.awt.headless=true Main
Python2 /usr/bin/python -m py_compile {src_path}
/usr/bin/python {exe_path}
Python3 /usr/bin/python3.7 -m py_compile {src_path}
/usr/bin/python3.7 {exe_path}
PHP7 /usr/bin/php {exe_path}
Javascript /usr/bin/jsc {exe_path}
Go /usr/bin/go build -o {exe_path} {src_path}
C# /usr/bin/mcs -optimize+ -out:{exe_path} {src_path}
Ruby /usr/bin/ruby {exe_path}
Rust /usr/bin/rustc -O -o {exe_path} {src_path}
Haskell /usr/bin/ghc -O -outputdir /tmp -o {exe_path} {src_path}
Free Pascal /usr/bin/fpc -O2 -o{exe_path} {src_path}
Plaintext /bin/cat {exe_path}
Free Basic /usr/local/bin/fbc {src_path}

Supported Feature

  • Basic Home Page
  • General
    • Cron Support
    • Queue Support
    • Notification Support
      • Browser
      • MessageBox
      • Mail
    • System Version
    • System Bug Report
  • User System
    • User Login
    • User Register
    • User Password Retrieve
    • User Email Verify
    • DashBoard
      • Statistics
      • Activities
      • Profile
    • Settings
  • Search System
    • Basic Redirect
    • Problem Search
    • User Search
    • Group Search
    • Contest Search
    • OmniSearch Support
  • Problem System
    • Problem List
    • Problem Tag
    • Problem Filter
    • Problem Details
    • Problem Solution
    • Problem Discussion
    • Problem Submit
      • Problem Immersive Mode
      • Problem Editor
      • Problem Submit History
      • Problem Compiler List
      • Problem Status Bar
      • Problem Virtual Judge
        • Submit to VJ
          • CodeForces
          • UVa
          • UVa Live
          • HDU
          • Contest Hunter
          • POJ
          • Vijos
          • PTA
        • Retrieve Status
      • Problem Online Judge
        • Judge Server
        • Judger
        • Submit to OJ
        • Retrieve Status
  • Status System
    • Status List
    • Status Filter
    • Status Details
      • Syntax Highlight
      • Verdict
      • Code Download
      • Code Share
  • Ranking System
    • Casual Ranking List
    • Professional Ranking List
  • Contest System
    • Contest List
    • Contest Ranking
    • Contest Filter
    • Contest Details
      • Contest Registration
      • Contest Temp Account
      • Leader Board
      • Contest CountDown
      • Contest Problem List
      • Contest Problem Details
      • Contest Announcements
      • Contest Admin Portal
        • Account Generate
        • Judge Status
        • Issue Announcements
        • ScrollBoard
      • In-Contest Problem Switch
      • Problem Temp Block
    • Contest Ranking System
  • Group System
    • Group List
    • Group Details
      • Group Timeline
      • Group Member Management
        • Invite
        • Remove Members
        • Approve Requests
        • Sub Group
      • Group Profile
      • Group General Info
      • Group Functions
        • Group Announcement
        • Group Contests
          • Group-wide Contests
          • Site-wide Contests
        • Group Settings
  • Admin Portal
    • Abuse Management
    • Admin User Management
    • Announcement Management
    • Babel Extension Management
    • Babel Marketspace Viewer
    • Contest Management
    • Dashboard Management
    • Dojo Task Management
    • Dojo Pass Records Management
    • Dojo Phase Management
    • Group Management
    • Judge Agent Management
    • Judge Server Management
    • Problem Management
    • Settings
    • Solution Management
    • Submission Management
    • User Management
    • Tools
      • Artisan Terminal
      • Backup Manager
      • Code Tester
      • Database Terminal
      • Log Viewer
      • Media Manager
      • Route Viewer
      • Task Scheduling

Open Source Contributors

Contributors

Credits

Laravel

NOJ JudgeServer

NOJ Judger

See composer.json or package.json for more info.

License Info

FOSSA Status

About

⚡ The most advanced open-source automatic algorithm online judge system | 南京邮电大学开源 Online Judge | QQ群:668108264

https://acm.njupt.edu.cn

License:MIT License


Languages

Language:PHP 63.3%Language:Blade 24.6%Language:TypeScript 11.6%Language:XSLT 0.4%Language:Shell 0.1%Language:VBScript 0.0%Language:Batchfile 0.0%