fix(remote_judger/atcoder): update LANGS_MAP

This commit is contained in:
Baoshuo Ren 2024-07-18 10:01:26 +08:00
parent d627490c67
commit 70d5b541de
Signed by: baoshuo
GPG Key ID: 00CB9680AB29F51A

View File

@ -10,23 +10,23 @@ const logger = new Logger('remote/atcoder');
const LANGS_MAP = { const LANGS_MAP = {
C: { C: {
name: 'C (GCC 9.2.1)', name: 'C (GCC 12.2.0)',
id: 4001, id: 5017,
comment: '//', comment: '//',
}, },
'C++': { 'C++': {
name: 'C++ (GCC 9.2.1)', name: 'C++ 20 (GCC 12.2.0)',
id: 4003, id: 5001,
comment: '//', comment: '//',
}, },
Pascal: { Pascal: {
name: 'Pascal (FPC 3.0.4)', name: 'Pascal (FPC 3.2.2)',
id: 4041, id: 5041,
comment: '//', comment: '//',
}, },
Python3: { Python3: {
name: 'Python (3.8.2)', name: 'Python (CPython 3.11.4)',
id: 4006, id: 5055,
comment: '#', comment: '#',
}, },
}; };