2511회 채점 완료

This commit is contained in:
2025-11-28 17:22:13 +09:00
parent 05f7f6b569
commit f8e5e15740
61 changed files with 10357 additions and 225 deletions

View File

@@ -11,17 +11,17 @@ const getGpdpScore = require('./gpdpScoring.js');
const getToday = require('./getToday.js');
const todayDate = getToday();
const examRound = '2510';
const examRound = '2511';
const codeTypes = [
// 'DIC',
'DIC',
'DPI',
];
const examTypes = [
// 'A',
// 'B',
'C',
'A',
'B',
// 'C',
// 'D'
];
@@ -33,7 +33,7 @@ const outputExcelFiles = [];
codeTypes.forEach(codeType => {
examTypes.forEach(type => {
const jsonPath = `./${codeType}_${examRound}${type}.json`
if (!fs.existsSync(jsonPath)) return;
if (!fs.existsSync(jsonPath)) return
const scoringJson = require(jsonPath);
const answerFilesDir = `./output/${examRound}/${type}/${testMode ? 'TEST' : codeType}`;
let outputExcelFile = `./${todayDate}_${codeType}_${examRound}${type}_채점결과.xlsx`;